zephyr/subsys/gnss/rtk/Kconfig
Luis Ubieda a000acf85b gnss: rtk: Add basic integration
Incorporate the basic RTK API as well as a basic client integration
(serial) as a way to receive and publish the RTK data.

Signed-off-by: Luis Ubieda <luisf@croxel.com>
2025-07-21 09:19:14 -04:00

21 lines
395 B
Plaintext

# Copyright (c) 2025 Croxel Inc.
# Copyright (c) 2025 CogniPilot Foundation
# SPDX-License-Identifier: Apache-2.0
menuconfig GNSS_RTK
bool "GNSS RTK client"
select EXPERIMENTAL
help
Enable GNSS RTK data-correction clients
if GNSS_RTK
rsource "protocol/Kconfig"
rsource "serial/Kconfig"
module = GNSS_RTK
module-str = GNSS RTK
source "subsys/logging/Kconfig.template.log_config"
endif