Question
backup RAM for STM32H743 device
according to the manual it says 4 Kbytes of backup SRAM in D3.
D3 start address is 0x38000000
in manual address for backup RAM is 0x3880 0000
but below is the behavior observed.
code example.
__HAL_RCC_BKPRAM_CLK_ENABLE();
HAL_PWREx_EnableBkUpReg();
HAL_PWR_EnableBkUpAccess();
by the above code, i can retain the data at address 0x38000000 after the soft reset.
can somebody explain the reason for this.
