mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-19 11:23:07 +08:00

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>
19 lines
527 B
Plaintext
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
|