2024-03-01 11:16 AM
I am using STM32H753ZI for my project. My use case is I want to detect brown out reset after brownout occurs and system restarts.
I am checking brownout reset flag using
if (__HAL_RCC_GET_FLAG(RCC_FLAG_BORRST). My query is this flag is shared/common between Power On Reset and Brown Out Reset i.e POR/PDR or BOR same as like in STM32F779NI?
Solved! Go to Solution.
2024-03-03 05:11 AM
The reference manual tells you which bits are set in various scenarios. For BOR reset, BORRST is set and PORRST is not set. For POR reset, both are set.
2024-03-03 05:11 AM
The reference manual tells you which bits are set in various scenarios. For BOR reset, BORRST is set and PORRST is not set. For POR reset, both are set.