CANNOT control the GPIO Pin, especially GPIO PF13
I tried to use the Nucleo H723ZG and DWM3000evb, but I couldn't control the RESET pin.
To debug this problem, I check the basic pin control, using only
while(1)
{
HAL_GPIO_TogglePin(GPIOF, GPIO_PIN_13);
HAL_Delay(1000);
}
However, it doesn't work and the output of PF13 is always 0V.
It is same with the previous problem, that the RESET pin with output open drain mode keeps 3.3V.
How can I debug this problem?
Thanks.
ps. I tried the another H723ZG board but got a same result.
