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

Issue with configuration

Hii guys ,

      I am using custom board bluetooth module based on nrf52  which is CBTMN10. I believe I am able to dump example code on my custom board bluetooth module using NRF52 -SDK ,but I am not able to test it on mobile application of nrf Toolkit.

The followings are my queries,

1. How am I supposed to know whether the source code has been dumped on my custom device?

2. Do i need to do any modification on software side like configuring the crystal or something?

Parents
  • A1.You may use nrf connect - programmer  to make sure SD,MBR & APP code is exist or not. But if you want to apply the nRF toolchain. You have to make sure the BLE service is real follow the ble_peripera examples.

    A2. Almost the SD clock source is configured as LF:

    nrf_clock_lf_cfg_t clock_lf_cfg = NRF_CLOCK_LFCLKSRC;

    // Initialize SoftDevice.
    SOFTDEVICE_HANDLER_INIT(&clock_lf_cfg, NULL);

    If your clock source is internal or others, you may configure the code and sdk_config.h

    If your customer board  hardware is not the same with DK, of course you have to define the same I/O, driver as your customer board. 

  • Thank you for replying,

    When I try to program with nrf_programmer i get this in log

    14:45:08.597
    Application data folder: C:\Users\sai\AppData\Roaming\nrfconnect\pc-nrfconnect-programmer
    14:45:08.840
    Using nrfjprog library 10.12.1, pc-nrfjprog-js 1.7.6
    14:45:28.611
    Unsupported device. The detected device could not be recognized as neither JLink device nor Nordic USB device.
    And i am not able to see device memory layout.
Reply
  • Thank you for replying,

    When I try to program with nrf_programmer i get this in log

    14:45:08.597
    Application data folder: C:\Users\sai\AppData\Roaming\nrfconnect\pc-nrfconnect-programmer
    14:45:08.840
    Using nrfjprog library 10.12.1, pc-nrfjprog-js 1.7.6
    14:45:28.611
    Unsupported device. The detected device could not be recognized as neither JLink device nor Nordic USB device.
    And i am not able to see device memory layout.
Children
Related