We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a708cca commit 400fd18Copy full SHA for 400fd18
drivers/clock_control/clock_control_nrf.c
@@ -629,6 +629,7 @@ static void clock_event_handler(nrfx_clock_evt_type_t event)
629
}
630
clkstarted_handle(dev, CLOCK_CONTROL_NRF_TYPE_LFCLK);
631
break;
632
+#if NRF_CLOCK_HAS_CALIBRATION
633
case NRFX_CLOCK_EVT_CAL_DONE:
634
if (IS_ENABLED(CONFIG_CLOCK_CONTROL_NRF_DRIVER_CALIBRATION)) {
635
z_nrf_clock_calibration_done_handler();
@@ -637,7 +638,10 @@ static void clock_event_handler(nrfx_clock_evt_type_t event)
637
638
__ASSERT_NO_MSG(false);
639
640
641
+#endif
642
+#if NRF_CLOCK_HAS_PLL
643
case NRFX_CLOCK_EVT_PLL_STARTED:
644
645
#if NRF_CLOCK_HAS_XO_TUNE
646
case NRFX_CLOCK_EVT_XO_TUNED:
647
case NRFX_CLOCK_EVT_XO_TUNE_ERROR:
0 commit comments