Hi,
I am attempting to create a minibuffer in SRAM for our own project and I consulted EFM32WG datasheet to choose a memory address. It should be located between 0x20000000 and 0x20007fff according memory map:
I realized that defined AM_BACKUP_DOMAIN_START_ADDRESS (0x40081120) in Firmware-Basic project is for some variables to be declared in the backup domain sector of SRAM, but according to the memory map, that address correspond to something related to the BURTC.
Is something in the memory map that has been changed?
Thanks in advance!
To use the internal SRAM just declare the buffer as a global static array and the complier/linker will put it in the right place (it knows about the internal 32 KB SRAM but not about the external 256 KB SRAM).