1# Copyright (c) 2025 Croxel Inc.
2# Copyright (c) 2025 CogniPilot Foundation
3# SPDX-License-Identifier: Apache-2.0
4
5menuconfig GNSS_RTK
6	bool "GNSS RTK client"
7	select EXPERIMENTAL
8	help
9	  Enable GNSS RTK data-correction clients
10
11if GNSS_RTK
12
13rsource "protocol/Kconfig"
14rsource "serial/Kconfig"
15
16module = GNSS_RTK
17module-str = GNSS RTK
18source "subsys/logging/Kconfig.template.log_config"
19
20endif
21