I am looking into using Internal RC instead of External Oscillator (with softdevice on).
The function ser_app_hal_hw_init() uses Xtal clock source by default.
-
Why does it not take clock_source as an argument, which is passed to sd_softdevice_enable() function? (see the code snippet below)
-
Can you please indicate all the places where I need to mention Internal RC as the clock source during initialization to be sure that it is indeed used (with softdevice on)?
uint32_t sd_softdevice_enable(nrf_clock_lfclksrc_t clock_source, softdevice_assertion_handler_t assertion_handler) { uint32_t err_code;
err_code = ser_app_hal_hw_init();
: :