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

Breakpoints not being hit

I'm compiling a custom application using the CMake scripts in the nRF mesh SDK. When I debug the application, even though the debugger is working – I can pause execution – breakpoints are not being hit. I wondered if it is perhaps because the breakpoints are not being set for the correct memory location, but I'm not sure how I could check that.

In addition, when I place a breakpoint, execution is immediately paused (SIGTRAP, but not where I placed the breakpoint), it would be good to know how to prevent this.

Here is the output from JLinkGDBServer when a breakpoint is set on the first line of main():

Also related, the breakpoint in main is hit when another problem occurs: devzone.nordicsemi.com/.../sigtrap-on-sd_softdevice_enable

I'm wondering if breakpoints are not being hit because they are not being offset by the softdevice length? In the output above a breakpoint is set at 0x000262DA, but the flash start is 0x00026000 and the soft device hex is >400kb.

Parents Reply Children
  • I'm wondering if breakpoints are not being hit because they are not being offset by the softdevice length? In the output above a breakpoint is set at 0x000262DA, but the flash start is 0x00026000 and the soft device hex is >400kb.

     no offset is needed as the breakpoint is set at an absolute address and the debugger is not working with offsets here.  If you look at the .map file, you can see the absolute address space the functions and data are occupying. 

     

    nrbrook said:
    Here's what I get in Ozone when it occurs

    It seems to be a hardfault which is handled inside the softdevice. I am not sure why the hardfault has not been forwarded to the application. Have you happened to play with the bootloader or the vector table set functions?

  • No I've not done anything with the bootloader. Is the bootloader flashed as part of this? Or can I re-program a stock bootloader separately? If it would help I could send my project to you directly?

  • The root cause in this thread and here might be related.