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

Application not running on a Rigado BMD-300

Hi all

Being fairly new to the nRF ecosystem I'm trying to get some basic code up and running on a custom board which uses a Rigado BMD-300. I'm using one of the examples in the SDK, and this runs fine on the Development Kit I have (PCA10040) but not on the BMD-300. I have updated the configuration of the clock sources as per this post (https://rigado.zendesk.com/hc/en-us/articles/225674668-Example-files-will-not-run-on-my-hardware-but-do-on-the-Eval-board-) 

However although the device programs and verifies fine (from both Segger Embedded Studio and nRFgo Studio) I see absolutely nothing - no flashing LEDs and nothing being advertised. Power seems fine, but I don't see a peep from the custom board.

I'm a bit stumped - what should I try next!

Thanks!

Parents Reply
  • The sdk_config file configures which clock source that is used by the project. You can configure it to use the RC by setting it to 0: 

    // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver
    //==========================================================
    #ifndef NRFX_CLOCK_ENABLED
    #define NRFX_CLOCK_ENABLED 0
    #endif
    // <o> NRFX_CLOCK_CONFIG_LF_SRC  - LF Clock Source
     
    // <0=> RC 
    // <1=> XTAL 
    // <2=> Synth 
    // <131073=> External Low Swing 
    // <196609=> External Full Swing 
    

Children
Related