2019-01-31 01:45 PM
Hi,
I'm using the STM32 F429ZI MCU, and I was wondering if an entire port can be deinitialized rather than one pin at a time. I know of the HAL_GPIO_DeInit() in the STM32 headers but it looks like it works one pin at a time. Is there a function to DeInit an entire port, like DeInit(GPIOx)?
Solved! Go to Solution.
2019-01-31 01:52 PM
The RCC knows about GPIOxRST in AHB2.
2019-01-31 01:52 PM
The RCC knows about GPIOxRST in AHB2.
2019-01-31 03:09 PM
I'm using CubeMX, does it have a code piece for this?
2019-01-31 07:44 PM
Found GPIO registers in stm32 chip header, thanks for pointing in the right direction. Closer to what we wanted.