:orphan: .. title:: CONFIG_GPS_SIM_BASE_TIMESTAMP .. kconfig:: CONFIG_GPS_SIM_BASE_TIMESTAMP CONFIG_GPS_SIM_BASE_TIMESTAMP ############################# *Base timestamp for GPS data* Type: ``int`` Help ==== .. code-block:: none Timestamp at which the simulator will start counting. Format is hour * 10000 + min * 100 + sec, which means that 13:46:27 becomes 134627. Direct dependencies =================== \ :kconfig:`GPS_SIM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 134627 Kconfig definition ================== At ``/drivers/gps/gps_sim/Kconfig:54`` Included via ``/Kconfig:8`` → ``/Kconfig.zephyr:31`` → ``/modules/Kconfig:6`` → ``/doc/_build/kconfig/Kconfig.modules:2`` → ``/Kconfig.nrf:57`` → ``/drivers/Kconfig:14`` → ``/drivers/gps/Kconfig:10`` Menu path: (Top) → Modules → nrf (/home/runner/work/sdk-nrf/sdk-nrf/ncs/nrf) → Nordic nRF Connect → Device Drivers → GPS Drivers → GPS simulator .. code-block:: kconfig config GPS_SIM_BASE_TIMESTAMP int "Base timestamp for GPS data" default 134627 depends on GPS_SIM help Timestamp at which the simulator will start counting. Format is hour * 10000 + min * 100 + sec, which means that 13:46:27 becomes 134627. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*