44 lines
736 B
Plaintext
44 lines
736 B
Plaintext
# Copyright (c) 2023 Trackunit Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig GNSS
|
|
bool "GNSS drivers"
|
|
select EXPERIMENTAL
|
|
help
|
|
Enable GNSS drivers and configuration.
|
|
|
|
if GNSS
|
|
|
|
config GNSS_SATELLITES
|
|
bool "GNSS satellites support"
|
|
help
|
|
Enable GNSS sattelites callback.
|
|
|
|
config GNSS_DUMP
|
|
bool "GNSS dump support"
|
|
depends on LOG
|
|
help
|
|
Enable GNSS dump library
|
|
|
|
config GNSS_DUMP_TO_LOG
|
|
bool "Dump GNSS events to log"
|
|
select GNSS_DUMP
|
|
help
|
|
Enable GNSS dump to log.
|
|
|
|
if GNSS_DUMP_TO_LOG
|
|
|
|
config GNSS_DUMP_TO_LOG_BUF_SIZE
|
|
int "GNSS log dump buffer size"
|
|
default 128
|
|
help
|
|
Size of GNSS log dump buffer
|
|
|
|
endif
|
|
|
|
module = GNSS
|
|
module-str = gnss
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif
|