I'm trying to launch my app on a custom board with nrf52 after a successful launching on DK. The problem is here: err_code = sd_softdevice_enable(p_clock_lf_cfg, softdevice_fault_handler);
I use internal RC as oscillator and init it like:
#define NRF_CLOCK_LFCLKSRC {.source = NRF_CLOCK_LF_SRC_RC,
.rc_ctiv = 16,
.rc_temp_ctiv = 2,
.xtal_accuracy = NRF_CLOCK_LF_XTAL_ACCURACY_250_PPM}
I checked sdk_config.h and every interrupt that I use there has priority 7.
Moreover, I don't understand why program uses last if case except one with #elif defined(S1XX)
. I'm using SD s132, do I need to define it somewhere?