i am building a udsboot loader ,so i need a app for test, i build a app by changing the boot project,
the app project is from bootloader projrct ,the bootloader projrct is running ok;
but the app project always into trap,
i just change the link file and add a reloacte vtor
below is my bootloader project ,the bootloader project is running ok
hope someone give me some advice
This is normal!
You have modified the address of the link file, which will prevent you from directly debugging the APP program, because the default startup address starts from 0.
Usually we modify the link file after confirming that there is no problem with the APP program.
thank you very much,yesterday,i have comfired that there is some problems in my app project .
first, my project is from my boot project, my boot project runs well,i just relocate the interrupt table and link file compared with my boot project in my app project ,when my program jump into to my app project from boot project,i found that the program can't enter lpit irq hander function in my app project,how should i to find the cause?
hope your repley
https://www.nxp.com/search?keyword=AN12218&start=0
Refer to this example to learn how to make Boot and APP programs.