Hi
we have a custom board, where the clock does not start (verified by osciloscope). We do not use an external clock, so from our understanding the command to init the S130 soft device should be changed from
SOFTDEVICE_HANDLER_INIT(&clock_lf_cfg, NULL);
to
SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_SYNTH_250_PPM, false);
or
SOFTDEVICE_HANDLER_INIT(NRF_CLOCK_LFCLKSRC_RC_250_PPM_250MS_CALIBRATION, false);
Is this understanding correct?
Any hints are appreciated.