Identifying BOR (Brown-Out Reset) Specifically in STM32G0 Series
I am working on a project with the STM32G0 series microcontroller. There is a requirement in my project to identify a BOR (Brown-Out Reset) independently. In the previous version of the project, we used the STM32L4 series, where there is a reset flag bit (BORRSTF) in the RCC_CSR register to specifically identify the occurrence of a BOR.
In the STM32G0 series, there is a reset flag bit (PWRRSTF) available in the RCC_CSR register to indicate a power-related reset, which can be due to a BOR, POR (Power-On Reset), or PDR (Power-Down Reset). However, there is no dedicated reset flag for identifying a BOR alone.
Is there any other method available in the STM32G0 series to specifically identify a BOR?

