b60eb1881b
This commit adds a GNSS driver for the Quectel LCX6G series of GNSS modems (LC26G, LC76G, LC86G). It is based on the modem subsystem, and the GNSS utilities added in the two previous commits. Signed-off-by: Bjarki Arge Andreasen <bjarkix123@gmail.com>
18 lines
517 B
Plaintext
18 lines
517 B
Plaintext
# Copyright (c) 2023 Trackunit Corporation
|
|
# Copyright (c) 2023 Bjarki Arge Andreasen
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config GNSS_QUECTEL_LCX6G
|
|
bool "Quectel LCX6G GNSS modem driver"
|
|
default y
|
|
depends on GNSS
|
|
depends on DT_HAS_QUECTEL_LC26G_ENABLED || DT_HAS_QUECTEL_LC76G_ENABLED || DT_HAS_QUECTEL_LC86G_ENABLED
|
|
select MODEM_MODULES
|
|
select MODEM_BACKEND_UART
|
|
select MODEM_CHAT
|
|
select GNSS_PARSE
|
|
select GNSS_NMEA0183
|
|
select GNSS_NMEA0183_MATCH
|
|
help
|
|
Enable quectel LCX6G series GNSS modem driver.
|