Brown Out Reset in STM32H753ZI
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?

