Is it possible to use softDevice on nRF52840 without 32k crystal?
Is it possible to use softDevice on nRF52840 without 32k crystal?
Hi Jørgen,
I have tried to perform the following changes into ble_app_blinky example:
But the example still works properly on PDK board only if the 32K xtal is connected.
Do I miss something important?
Which SDK version are you using? Note that the clock source used by the softdevice is not the one you configure in the CLOCK peripheral settings in sdk_config.h. In SDK 14.x.0, you can configure clock source for the softdevice using the sdk_config.h macros NRF_SDH_CLOCK_LF_SRC
, NRF_SDH_CLOCK_LF_RC_CTIV
, and NRF_SDH_CLOCK_LF_RC_TEMP_CTIV
.
I'm using the 14.1 version and I was able to make it working after changing the value of NRF_SDH_CLOCK_LF_SRC. Thanks :)