1# Copyright 2024 Jerónimo Agulló
2# SPDX-License-Identifier: Apache-2.0
3
4config GNSS_LUATOS_AIR530Z
5	bool "Luatos Air530z GNSS device"
6	default y
7	depends on GNSS
8	depends on DT_HAS_LUATOS_AIR530Z_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	  Enable Luatos Air530z GNSS driver.
18
19config GNSS_LUATOS_AIR530Z_SATELLITES_COUNT
20	int "Maximum satellite count"
21	depends on GNSS_SATELLITES
22	default 24
23	help
24	  Maximum number of satellites that can be decoded from the
25	  GNSS device. This does not affect the number of devices that
26	  the device is actually tracking, just how many of those can
27	  be reported in the satellites callback.
28