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

BLE Multilink Central example not working on PCA10028

Hi,

I am trying BLE multilink central example from SDK9 on PCA10028 board, but everytime device gets stuck at LEDS_CONFIGURE() in main.c.

Below is my setup:

  1. Flash S120 softdevice via NRF Studio
  2. goto nRF51_SDK_9.0.0_2e23562\examples\ble_central\ble_app_multilink_central\pca10028\s120\arm5_no_packs
  3. launch ble_app_multilink_central_s120_pca10028.uvprojx
  4. build and flash the app
  5. debug->start debug session

Please let me know what I am missing here. NOTE: other S110 based Blinky example, S130 based BLE multilink peripheral examples are working fine on this board.

Thanks Manju

  • not sure what you mean by debug stuck in LEDS_CONFIGURE!!! LEDS_CONFIGURE is the first debuggable line in main.c so i guess the blue arrow is just stalled because the device went to sleep mode. If you put a breakpoint at other lines, you will see that they are executed normally.

    image description When you run this application and hit stop, this blue pointer does not mean that the execution is still stuck there. It is not able to point to the correct place because the last execution was sd_app_event_wait() and then the chip went to sleep after executing the softdevice instructions.

    If you see the PC value, it points to inside the softdevice. Which is correct. image description

Related