2016-01-30 21:37:43 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2020-02-15 21:38:35 +08:00
|
|
|
menuconfig MODEM
|
|
|
|
bool "Modem Support"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable modem support.
|
|
|
|
|
2020-02-08 15:30:09 +08:00
|
|
|
if MODEM
|
|
|
|
|
2016-01-30 21:37:43 +08:00
|
|
|
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.
|
|
|
|
|
2019-10-21 22:14:33 +08:00
|
|
|
|
|
|
|
source "drivers/modem/altair/Kconfig"
|
2020-02-08 15:30:09 +08:00
|
|
|
|
|
|
|
endif # MODEM
|