This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Keil MDK - STM32 - How can I load independent programs

Note: This was originally posted on 15th November 2011 at http://forums.arm.com

Hi,

I have two independent Keil-projects for Cortex M3 (STM32) : A bootloader and an application.
With the help of a scatter file I can shift the bootloader to 0800D800.
But then I can't debug it any more because there is no reset vector and stack pointer at 08000000.
When I keep these vectors in place the loader works.
But I need the same space for the application. That is, the loader erases 08000000 to 0800D7FF
and kills its own vectors. Then the application is stored in flash and installs its vectors.
After reset the loader can't be reached any more.

So before deleting the lower space I store the reset vector and the stackpointer of the loader.
After deletion I restore these vectors and load the application without its vectors. They are stored
at a free address in the loader space. After reset the processor always runs the loader first.
When the loader finds a valid application it uses the application-vectors to jump there.
As the interrupt vectors are those from the application, I avoid using interrupts in the loader.

I could include the loader in the application. But Keil uses a lot of lower space for data I can't assign
to program parts . I'm afraid that, when deleting an old application, some important data for the
loader could be deleted, too (the reset-section is 236bytes long).

Please, tell me there is a better way .

Regards
Detlef

btw: Why can't I search within the community? There is only a "Search Our Site" with a pulldown menu,
but no selection for the actual community.
0