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

Sample Beacon example from the SDK 12

The example code of beacon was used from the SDK -nRF5_SDK_12.1.0_0d23e2a\examples\ble_peripheral\ble_app_beacon\pca10028\s130\arm5_no_packs\ble_app_beacon_pca10028_s130

We have been working on the nRF51822 IC on a custom board. 
We have flashed the softdevice given by nRF - s130_nrf51_2.0.1_softdevice

Unfortunately, we don't have a crystal oscillators, therefore the firmware is not running on the board. 

Is there any changes that we can do to the firmware so that it doesn't need the crystal oscillator?

Parents
  • Hello,

    Is there any changes that we can do to the firmware so that it doesn't need the crystal oscillator?

     In sdk_config.h you can change clock source, by default it is set to 1 = XTAL: 

    // <o> CLOCK_CONFIG_LF_SRC - LF Clock Source

    // <0=> RC
    // <1=> XTAL
    // <2=> Synth

    #ifndef CLOCK_CONFIG_LF_SRC
    #define CLOCK_CONFIG_LF_SRC 1
    #endif

    Best regards,
    Oeyvind

Reply
  • Hello,

    Is there any changes that we can do to the firmware so that it doesn't need the crystal oscillator?

     In sdk_config.h you can change clock source, by default it is set to 1 = XTAL: 

    // <o> CLOCK_CONFIG_LF_SRC - LF Clock Source

    // <0=> RC
    // <1=> XTAL
    // <2=> Synth

    #ifndef CLOCK_CONFIG_LF_SRC
    #define CLOCK_CONFIG_LF_SRC 1
    #endif

    Best regards,
    Oeyvind

Children
Related