CONFIG_GPS_SIM_BASE_LONGITUDE

Base longitude for GPS data

Type: int

Help

Start-point longitude for simulated GPS data, from which the generated data will continue. Calculated by deg * 100000 + minutes * 1000, for example 10 deg 26.201’E will be 1026201. Positive values are East, while negative values are West.

Direct dependencies

GPS_SIM

(Includes any dependencies from ifs and menus.)

Default

  • 1026201

Kconfig definition

At <nRF>/drivers/gps/gps_sim/Kconfig:43

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:9<BuildDir>/Kconfig/Kconfig.modules:1<nRF>/Kconfig.nrf:27<nRF>/drivers/Kconfig:13<nRF>/drivers/gps/Kconfig:10

Menu path: (Top) → Modules → Nordic nRF Connect → Device Drivers → GPS Drivers → GPS simulator

config GPS_SIM_BASE_LONGITUDE
    int "Base longitude for GPS data"
    default 1026201
    depends on GPS_SIM
    help
      Start-point longitude for simulated GPS data,
      from which the generated data will continue.
      Calculated by deg * 100000 + minutes * 1000,
      for example 10 deg 26.201'E will be 1026201.
      Positive values are East, while negative
      values are West.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)