:orphan: .. title:: SYSTEM_CLOCK_NO_WAIT .. option:: CONFIG_SYSTEM_CLOCK_NO_WAIT *No wait* Type: ``bool`` Help ==== System clock source is initiated but does not wait for clock readiness. When this option is picked, system clock may not be ready when code relying on kernel API is executed. Requested timeouts will be prolonged by the remaining startup time. Direct dependencies =================== \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Kconfig definition ================== .. highlight:: kconfig At ``drivers/timer/Kconfig:147`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:28`` Menu path: (Top) → Device Drivers → Timer Drivers → nRF Real Time Counter (NRF_RTC1) Timer → Clock startup policy .. parsed-literal:: config SYSTEM_CLOCK_NO_WAIT bool "No wait" depends on \ :ref:` ` help System clock source is initiated but does not wait for clock readiness. When this option is picked, system clock may not be ready when code relying on kernel API is executed. Requested timeouts will be prolonged by the remaining startup time. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*