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

Eclipse, GDB, MacOS...So Close...

I am seeing signs of the chip wanting to be debugged by Eclipse on my Mac. It really does. I can feel it.

Two things seem to be plaguing me:

  1. 90% of the time it fails to download the code from gdb, citing a "block verification error". Would like to get to the bottom of this.

  2. Once in a while it successfully downloads, then it breaks at the reset handler. I don't know why (I haven't set any breakpoints), but it shows me where it is and is looking like it might be starting to work.

Then I hit "resume", and I get this:


Read 2 bytes @ address 0x000003D4 (Data = 0x50D0)
Read 2 bytes @ address 0x000003D6 (Data = 0xDCFB)
Read 2 bytes @ address 0x000003D8 (Data = 0x4805)
Read 2 bytes @ address 0x000003DA (Data = 0x4780)
Starting target CPU...
ERROR: Programming failed @ address 0x00000000 (block verification error)
...Target halted (PC = 0xFFFFFFFE)
Reading all registers
Read 4 bytes @ address 0xFFFFFFFE (Data = 0x00007FFF)
Read 4 bytes @ address 0x1FFFFFFC (Data = 0x00000000)
Reading 64 bytes @ address 0x1FFFFFC0
Read 4 bytes @ address 0x00000000 (Data = 0x20004000)
Read 2 bytes @ address 0xFFFFFFFE (Data = 0x0000)
Read 2 bytes @ address 0x00000000 (Data = 0x4000)
Read 2 bytes @ address 0x00000002 (Data = 0x2000)
Read 2 bytes @ address 0x00000004 (Data = 0x03BD)

It starts the target CPU again, and I get another block verification error. What is it trying to download to address 0?

My gdb startup script looks like this:

mon speed 30 mon endian little mon flash download = 1 mon flash device = NRF51822 mon sleep 1000 mon reset 0 mon sleep 1000

The sleeps seem to help, but this is starting to feel like a bad game of whack-a-mole.

Any ideas?

Parents
  • I love answering my own questions.

    I took a chance at trying the "Standard GDB Hardware Debugging Launcher" instead of the "GDB (DSF) Hardware Debugging Launcher" that NAN-29 suggests. This is a little bit of fine print at the bottom of the "Main" tab in the debug configuration editor. You have to override the default.

    And voila, it works within eclipse, and seemingly quite well. I'm only debugging blinky right now; I'll take on a real BLE sample next, but I am no longer slowly going insane trying random settings.

    I hope this helps any of you out there trying to use your mac for development.

    -Jim

Reply
  • I love answering my own questions.

    I took a chance at trying the "Standard GDB Hardware Debugging Launcher" instead of the "GDB (DSF) Hardware Debugging Launcher" that NAN-29 suggests. This is a little bit of fine print at the bottom of the "Main" tab in the debug configuration editor. You have to override the default.

    And voila, it works within eclipse, and seemingly quite well. I'm only debugging blinky right now; I'll take on a real BLE sample next, but I am no longer slowly going insane trying random settings.

    I hope this helps any of you out there trying to use your mac for development.

    -Jim

Children
Related