1# Copyright 2023 Google LLC 2# SPDX-License-Identifier: Apache-2.0 3 4config GNSS_NMEA_GENERIC 5 bool "Generic GNSS NMEA device" 6 default y 7 depends on GNSS 8 depends on DT_HAS_GNSS_NMEA_GENERIC_ENABLED 9 depends on GNSS_REFERENCE_FRAME_WGS84 10 select MODEM_MODULES 11 select MODEM_BACKEND_UART 12 select MODEM_CHAT 13 select GNSS_PARSE 14 select GNSS_NMEA0183 15 select GNSS_NMEA0183_MATCH 16 help 17 Generic NMEA based GNSS device. 18 19if GNSS_NMEA_GENERIC 20 21config GNSS_NMEA_GENERIC_SATELLITES_COUNT 22 int "Maximum satellite count" 23 depends on GNSS_SATELLITES 24 default 24 25 help 26 Maximum number of satellite that the driver that can be decoded from 27 the GNSS device. This does not affect the number of devices that the 28 device is actually tracking, just how many of those can be reported 29 in the satellites callback. 30 31endif 32