STM32F777 remapping/jumping to internal SRAM
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?