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

Booting application from custom bootloader

Hi,

I'm currently developing a custom bootloader for DFU, using I2C.

The bootloader is based upon the secure UART bootloader for nRF52832. Transferring and writing the image works fine, I receive the entire image and write it at the start address 0x26000 (Softdevice is present). To boot the application I currently use nrf_bootloader_app_start(), however that doesn't seem to want to start the application. Do I need to change the start address for the nrf_bootloader_app_start? Currently it uses 0x00001000 (MBR).

Edit: An additional question, is it possible to flash the nRF52832 using a Motorola Srecord hex file? I've tried looking for any documentation of which .hex files that nrfjprog accepts but cannot find any.

HW: nRF52832 PCA10040 devkit

SDK: v15.3

SD: 6.1.1

Parents Reply Children
  • I've been trying to find out what's going on but it seems like it might hit a fault handler?

    After receiving and image, verifying its CRC and writing it to memory the nRF52832 goes unresponsive for about 30-45 seconds. When I try to read the registers nrfjprog only returns:

    ERROR: JLinkARM DLL reported an error. Try again. If error condition                                              
    ERROR: persists, run the same command again with argument --log, contact Nordic                                   
    ERROR: Semiconductor and provide the generated log.log file to them. 

    After 30 seconds or so I can read the registers

    R0:   0x01000001
    R1:   0x40020518
    R2:   0xE000E100
    R3:   0x20002585
    R4:   0x200000C0
    R5:   0x00000000
    R6:   0xE000E000
    R7:   0x00000000
    R8:   0x00000000
    R9:   0x00000000
    R10:  0x20000000
    R11:  0x00000000
    R12:  0x00000000
    SP:   0x2000FF38
    LR:   0x00015CCD
    PC:   0x00015CCE
    xPSR: 0x61000000
    MSP:  0x2000FF38
    PSP:  0x00000000

    And the application is running.

    Edit: Seems like it can take up to a minute or two. During this period I cannot connect to the nRF52832 using JLinkExe and I get disconnected when I boot the image:

    ****** Error: Communication timed out: Requested 12 bytes, received 0 bytes !

  • I hit a fault handler when I tried to uninit fsstorage, resolved by waiting until it was not busy anymore. Now the app boots instantly :).

Related