nuttx/drivers/modem/Kconfig
Xiang Xiao 3cb259daa6 drivers/Kconfig: Move if/endif to subfolder Kconfig
Move if/endif to subfolder Kconfig and make ARCH_HAVE_XXX option always selectable by moving out of if/endif
2020-02-08 08:04:05 -06:00

27 lines
597 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if MODEM
config MODEM_U_BLOX
bool "Enable u-blox modem driver"
default n
---help---
Compile the u-blox serial modem driver. The driver consists of
the upper half in the OS and the lower half with implementation
in the chosen board.
config MODEM_U_BLOX_DEBUG
bool "Debug u-blox modem driver"
default n
depends on MODEM_U_BLOX
---help---
Allow the u-blox modem driver print debug information.
source "drivers/modem/altair/Kconfig"
endif # MODEM