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

Softdevice doesn't turn on HFCLK

Hi,

We build a new board based on nRF52833 wlcsp,

I tried to run a simple code with BLE peripheral (ble_app_uart example), and I noticed that the HFCLK is not working (Tested with scope)

Using s140_nrf52_7.0.1 softdevice

When I'm running the following code:

NRF_CLOCK->EVENTS_HFCLKSTARTED = 0;
NRF_CLOCK->TASKS_HFCLKSTART    = 1;

/* Wait for the external oscillator to start up */
while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0)
{
}

while (1)
{

}

that only turning on the HFCLK it works good (tested with scope)

What can be the problem of softdevice to turn on the HFCLK?

Related