:orphan: .. title:: CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_PERIOD .. kconfig:: CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_PERIOD CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_PERIOD ########################################### *Calibration opportunity period in milliseconds* Type: ``int`` Help ==== .. code-block:: none Periodically, calibration action is performed. Action includes temperature measurement followed by clock calibration. Calibration may be skipped if temperature change (compared to measurement of previous calibration) did not exceeded CLOCK_CONTROL_NRF_CALIBRATION_TEMP_DIFF and number of consecutive skips did not exceeded CLOCK_CONTROL_NRF_CALIBRATION_MAX_SKIP. Direct dependencies =================== \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION ` && \ :kconfig:`CLOCK_CONTROL_NRF ` && \ :kconfig:`CLOCK_CONTROL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 4000 Kconfig definition ================== At ``/clock_control/Kconfig.nrf:75`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:56`` → ``/clock_control/Kconfig:23`` Menu path: (Top) → Device Drivers → Hardware clock controller support → NRF Clock controller support → Enable LF clock calibration .. code-block:: kconfig config CLOCK_CONTROL_NRF_CALIBRATION_PERIOD int "Calibration opportunity period in milliseconds" default 4000 depends on CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION && CLOCK_CONTROL_NRF && CLOCK_CONTROL help Periodically, calibration action is performed. Action includes temperature measurement followed by clock calibration. Calibration may be skipped if temperature change (compared to measurement of previous calibration) did not exceeded CLOCK_CONTROL_NRF_CALIBRATION_TEMP_DIFF and number of consecutive skips did not exceeded CLOCK_CONTROL_NRF_CALIBRATION_MAX_SKIP. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*