2021-07-19 01:17 AM
My bootloader and application is refer to F7-packet-ExtMem, but when I jump to application's location it will get IACCVIOL err.
My cpu is stm32f469 and use qspiflash to save application codes.Memory map mode is ok.
Don't know why it cause this err.
2021-07-19 06:58 AM
Show the code. IACCVIOL suggests you're jumping to an invalid (i.e. cannot run instructions from there) memory location.
2021-07-19 09:06 PM
I found that error is in the timebase Irq. I had close the timebase init and timebase irq before jump to app, but still have IACCVIOL problem.
My bootloader use systemTick for timebase and APP use sysTick for freertos tim6 for timebase.
I also change bootloader timebase into tim7 but still not work.