I can not use backup RAM for STM32H743BI. Is there any application note or source code for backup RAM.
I am using STM32H743BI controller. I need to use backup RAM as nonvolatile ram. So I use external 3V battery and LSE 32.768 crystal for RTC. RTC works well but I can not use backup RAM. I use code like below;
PWR->CR1 |= PWR_CR1_DBP;
while(((PWR->CR1 & PWR_CR1_DBP) == 0));
I do not know is there anything I should do. I can not find any application not or source code about backup RAM.
