Bootloader+ main app
Hi, i have been developing custom bootloader with start address at 0x08000000 and a main application at address 0x08003800 were i planned 14KB for bootloader and next 40kb for main app.
i can see the bootloader works fine, but bootloader doesnt triggers the main app properly.
were this is how i am pointing to the main app
typedef void (*pFunction)(void);
pFunction Jump_To_Application;
uint32_t JumpAddress;
on this
__set_MSP(*(__IO uint32_t*) APPLICATION_ADDRESS);
were #define APPLICATION_ADDRESS ((uint32_t)0x08003800)
could anyone help me to solve the isue?
