Question
STM32L552, relocate IRQ Vector Table
We are porting code from a STM32L4P5, where we relocate the IRQ VEctor Table with
memcpy(g_RamVectorTable, g_pfnVectors, sizeof(g_RamVectorTable));
__HAL_SYSCFG_REMAPMEMORY_SRAM(); // not implemented on STM32L5xx
that works fine, but as commented __HAL_SYSCFG_REMAPMEMORY_SRAM() does not exist in HAL for the STM32L552.
Any idea or explanation ?
