This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

bootloader issues using gcc

Hi

I have been using the DFU for quite a while. I adapted the boot loader to my hardware and compiled it using Keil. All my other code is written in another environment using gcc, so I wanted to be able to do the boot loader in that same environment.

I managed to get the boot loader compiled and working, however, still got 2 issues:

  • apparently, even with the maximum optimization, the size is really at then limit, so I cannot add extra things apparently - is there a way to overcome this?
  • a bigger issue for me is that, when using the bootloader compiled with gcc, I cannot start my program after programming boot loader, soft device and application hex files using a JlinkExe script, I need to program the application using the DFU; with the Keil version that was not necessary;

After reading through the forum, it seems that in the gcc version, no valid flag is written tot he BOOTLOADER_SETTINGS flash space. I tried to fix that by including a write of the good value at this position, as suggested here but apparently that flash location was already written to 0, so cannot write to it anymore, that location or page should be erased first.

Can anyone help me solve this issue?

Is there a way of erasing and re-writing a single byte in flash using JlinkExe? And is this 1 byte the only thing checked at startup of the bootloader, or are there some other integrity checks? Or is the only way editing the boot loader hex file? How does the Keil project do this, make sure the application valid flag is already set in the hex file?

For information: I am using SDK7.2.0 on custom hardware, and I am doing all my development on Mac OSX.

dfu_gcc_nrf51.ld Makefile

Parents
  • Hi wim,

    How did you modify the bootloader for compiling with gcc ?

    1 . If you want to increase the size of the bootloader you can follow this guide.

    2 . Please clarify this part:

    I cannot start my program after programming boot loader, soft device and application hex files using a JlinkExe script, I need to program the application using the DFU; with the Keil version that was not necessary;

    With the original bootloader in the SDK, doesn't matter which toolchain you used to compile and program, the bootloader will still mark the application as invalid until you use DFU to update the bootloader.

    You can have a look at question E in this FAQ to know how to manually change the bootloader setting to tell the bootloader the valid application is flashed.

    Please double check to find why "that flash location was already written to 0", this should not happen, it should be 0xFF = BANK_INVALID_APP.

    My suggestion is to use the bootloader from SDK v8.1 or later, gcc is fully supported from that version.

    nrf51422_xxac.hex

  • I added the ld and the makefile from which I started in my original question. The makefile is just for reference, I myself am not using make, I am using qmake via QtCreator. However, I checked the execution of the compilation and linking and objcopy and such, so the execution seems to be ok. The .ld file I got from this post

Reply Children
No Data
Related