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

Cannot get examples to work on 52-DK

Still trying to get anything ta all to work on the nRF52-DK

  • I erased the chip
  • I flashed the soft device "soft_device_s132_v3.3.3" to address 0 and verified
  • built unmodified ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/pca10040/s132/armgcc
  • Noticed that this example (andall others) had a serious error. Linker script links it at 0x1c000, but this overlaps the 3.0 soft device. Release notes for soft device say app should start at 0x1f000...examples being wrong is never a good sign...
  • modified linker script to link .text at 0x1f000 and start RAM usage at 0x20002000
  • built it
  • flashed to 0x1f000
  • still no go
  • attaching GDB shows that code runs until a call to SVCALL(SD_SOFTDEVICE_ENABLE... then the code jumps to softdevice, as expected, but it never returns, somewhere in the enable call the CPU HardFaults

SO:

  • What gives?
  • Why the obvious errors in the examples?
  • why does it not work at all?

Actual binary dump of the flash flashed with soft device and compiled unmodified (except linker script) sample app: mega.nz/

Parents
  • I also have a problem migrating to S132 V3. I am using the header files included with V3, but it does not compile. The device_manager.h requires ble_gap_whitelist_t which was defined in bel_gap.h (V2) but is no longer defined in V3!

    ret_code_t dm_whitelist_create(dm_application_instance_t const * p_handle, ble_gap_whitelist_t * p_whitelist);

    Where can I get device_manager.h for S132 V3?

    The project I am using ble_app_template example from SDK11.

    Regards

Reply
  • I also have a problem migrating to S132 V3. I am using the header files included with V3, but it does not compile. The device_manager.h requires ble_gap_whitelist_t which was defined in bel_gap.h (V2) but is no longer defined in V3!

    ret_code_t dm_whitelist_create(dm_application_instance_t const * p_handle, ble_gap_whitelist_t * p_whitelist);

    Where can I get device_manager.h for S132 V3?

    The project I am using ble_app_template example from SDK11.

    Regards

Children
No Data
Related