Question
Run application other than 0x08000000 in STM32L4
I want to run the application code other than the default location of flash 0x08000000 in STM32 MCU.
For doing this I have modified the VECT_TAB_OFFSET = 0x200 in system_stm32l4xx.c
SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET;
Also, FLASH (rx) : ORIGIN = 0x8000200, LENGTH = 512K in .ld file.
By doing this changes it is not working. So, apart from this is there any changes still required? Please help me on this.
