2021-10-26 05:13 AM
If we initialize the GPIO pin as Mode output pp, pull up and speed_fast using HAL_GPIO_Init() API then what will be the state of the GPIO pin when pin status is not set using HAL_GPIO_WritePin()
2021-10-26 05:37 AM
The state is defined by the reset value of register GPIOx_ODR, which is by default 0x00000000, i.e. low (see RM0090, sections 8.3.4 and 8.4.6).
If the problem is resolved, please mark this topic as answered by selecting Select as best. This will help other users find that answer faster.
/Peter