Files
nuttx-apps/netutils/cmux/Kconfig
Halysson ddf1dcc3ff netutils/cmux: Add support for CMUX protocol
This commit adds CMUX (GSM 07.10) protocol support to netutils.
CMUX allows multiplexing multiple virtual serial connections
over a single physical serial link.

Changes include:
- CMUX protocol implementation
- CRC table for frame validation
- Basic frame handling

Signed-off-by: Halysson <halysson1007@gmail.com>
2025-10-06 15:04:22 -03:00

19 lines
527 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config NETUTILS_CMUX
bool "Cmux tool"
default n
---help---
Enable the CMUX (GSM 07.10) multiplexing protocol utility.
CMUX allows multiplexing multiple virtual serial connections
over a single physical serial link, commonly used with GSM/LTE
modems to simultaneously handle AT commands, data connections,
and other communication channels.
if NETUTILS_CMUX
endif # NETUTILS_CMUX