:orphan: .. title:: CONFIG_NRF9160_GPS_HANDLE_MODEM_CONFIGURATION .. kconfig:: CONFIG_NRF9160_GPS_HANDLE_MODEM_CONFIGURATION CONFIG_NRF9160_GPS_HANDLE_MODEM_CONFIGURATION ############################################# *The GPS driver will handle modem configuration directly* Type: ``bool`` Help ==== .. code-block:: none Disabling this will cause the GPS driver to do no modem configuration. This is useful if you need to remove the dependency on the at_cmd_host library from the GPS driver, but it will require that some other part of the application send the AT commands to configure the GPS properly. Direct dependencies =================== !\ :kconfig:`LWM2M_CARRIER ` && \ :kconfig:`AT_CMD ` && \ :kconfig:`NRF9160_GPS ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/drivers/gps/nrf9160_gps/Kconfig:23`` 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:11`` Menu path: (Top) → Modules → nrf (/home/runner/work/sdk-nrf/sdk-nrf/ncs/nrf) → Nordic nRF Connect → Device Drivers → GPS Drivers → nRF9160 GPS driver [deprecated] .. code-block:: kconfig config NRF9160_GPS_HANDLE_MODEM_CONFIGURATION bool "The GPS driver will handle modem configuration directly" default y depends on !LWM2M_CARRIER && AT_CMD && NRF9160_GPS help Disabling this will cause the GPS driver to do no modem configuration. This is useful if you need to remove the dependency on the at_cmd_host library from the GPS driver, but it will require that some other part of the application send the AT commands to configure the GPS properly. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*