2018-07-07 05:54 AM
Hi,
I was previously working on an stm32f429 MCU and successfully jumped to internal SRAM using:
__HAL_SYSCFG_REMAPMEMORY_SRAM();
I've ported my code to a new STM32F777 system and have realized the above function does not exist. Apparently the SYSCFG register does not have an option for remapping to internal SRAM.
How can I remap to interanl SRAM in STM32f7 MCUs? Do I have to program the BOOT_ADD0 & 1 registers and perform a soft reset?
Solved! Go to Solution.
2018-07-07 08:19 AM
I'm not sure of the necessity here. Can't you just use SCB->VTOR to change the vector table to RAM, and just to arbitrary code locations without remapping?
2018-07-07 08:19 AM
I'm not sure of the necessity here. Can't you just use SCB->VTOR to change the vector table to RAM, and just to arbitrary code locations without remapping?
2018-07-08 02:58 AM
Thanks, that solved it for me.