:orphan: .. title:: CONFIG_BT_MESH_TIME_SRV_CLOCK_ACCURACY .. kconfig:: CONFIG_BT_MESH_TIME_SRV_CLOCK_ACCURACY CONFIG_BT_MESH_TIME_SRV_CLOCK_ACCURACY ###################################### *Time model clock uncertainty* Type: ``int`` Help ==== .. code-block:: none This value defines the clock drift in microseconds per second, and is used to calculate overall time uncertainty for the Bluetooth mesh Time Server model. Direct dependencies =================== \ :kconfig:`BT_MESH_TIME_SRV ` && \ :kconfig:`BT_MESH ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 20 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_20PPM ` - 30 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_30PPM ` - 50 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_50PPM ` - 75 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_75PPM ` - 100 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_100PPM ` - 150 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_150PPM ` - 250 if \ :kconfig:`CLOCK_CONTROL_NRF_K32SRC_250PPM ` - 500 Kconfig definition ================== At ``/subsys/bluetooth/mesh/Kconfig.models:86`` Included via ``/Kconfig:8`` → ``/Kconfig.zephyr:31`` → ``/modules/Kconfig:6`` → ``/doc/_build/kconfig/Kconfig.modules:2`` → ``/Kconfig.nrf:54`` → ``/subsys/Kconfig:10`` → ``/subsys/bluetooth/Kconfig:30`` → ``/subsys/bluetooth/mesh/Kconfig:11`` Menu path: (Top) → Modules → nrf (/home/runner/work/sdk-nrf/sdk-nrf/ncs/nrf) → Nordic nRF Connect → Bluetooth Low Energy → Bluetooth mesh → nRF BT mesh models → Time Server .. code-block:: kconfig config BT_MESH_TIME_SRV_CLOCK_ACCURACY int "Time model clock uncertainty" default 20 if CLOCK_CONTROL_NRF_K32SRC_20PPM default 30 if CLOCK_CONTROL_NRF_K32SRC_30PPM default 50 if CLOCK_CONTROL_NRF_K32SRC_50PPM default 75 if CLOCK_CONTROL_NRF_K32SRC_75PPM default 100 if CLOCK_CONTROL_NRF_K32SRC_100PPM default 150 if CLOCK_CONTROL_NRF_K32SRC_150PPM default 250 if CLOCK_CONTROL_NRF_K32SRC_250PPM default 500 depends on BT_MESH_TIME_SRV && BT_MESH && BT help This value defines the clock drift in microseconds per second, and is used to calculate overall time uncertainty for the Bluetooth mesh Time Server model. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*