nuttx/drivers/modem/Kconfig
Alin Jerpelea 06c8e43df9 drivers: modem: update altair modem
update Altair modem with the ALT1250 implementation

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2022-10-22 09:00:32 +08:00

33 lines
717 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menuconfig MODEM
bool "Modem Support"
default n
---help---
Enable modem support.
if MODEM
config MODEM_U_BLOX
bool "Enable u-blox modem driver"
default n
depends on ALLOW_BSD_COMPONENTS
---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/alt1250/Kconfig"
endif # MODEM