Electronic – Bootloader jump to main application problem using STM32 with Keil Uvision

bootloaderfirmwarekeilstm32

I am developing for the STM32F0 using Keil uVision.

I have a custom bootloader loaded running at address 0x08000000. I need the bootloader to jump to my main application which I flash at address 0x08003000. The ultimate goal is to allow remote updates of the main application. The bootloader code that jumps to the application is this:

__disable_irq();
JumpAddress = *(__IO uint32_t*) (APPLICATION_ADDRESS+4);
Jump_To_Application = (pFunction) JumpAddress;
__set_MSP(*(__IO uint32_t*) APPLICATION_ADDRESS);
Jump_To_Application();

I am getting a hard fault in the Jump_To_Application() line, with "Cannot access memory" message given by Keil.

Within Keil, I set the IROM1 start address to be 0x08003000 in my main application's project configuration. I feel like the problem lies in some further settings within Keil. For example, should IROM2 be set to anything? Should anything be adjusted from defaults in the Keil configuration within the bootloader project?

Does anyone have any recommendations?

Best Answer

I had the same problem: I solved it with commented this lines:

__disable_irq();
__set_MSP(*(__IO uint32_t*) APPLICATION_ADDRESS);

Some advice for anyone writing a bootloader for first time:

Turn your code into small sections:

  1. In the first write a simple blinky code without any interrupt.
  2. use of sector erase ability and and write your put your bootloader and application code together in flash. Now you just,must try to jump from bootloader in application code. If it works, this means your jumping is correct.
  3. Now try receive your application code with USART (or with any other peripheral) and write in flash. It must work, if not, it means write it flash is wrong (open hex code file and compare flash data,flash address and other thing with hex file) (attention to little_endian writing)
  4. Now write a blinky code with timer and interrupt. It must work, if not, it mean is mistake is in jumping vector table