:orphan: .. title:: CONFIG_GSM_MUX_MRU_DEFAULT_LEN .. kconfig:: CONFIG_GSM_MUX_MRU_DEFAULT_LEN CONFIG_GSM_MUX_MRU_DEFAULT_LEN ############################## *Default size of received user data (MRU)* Type: ``int`` Help ==== .. code-block:: none Default MRU (Maximum Receive Unit) data size. The default value for Basic mode is 31 bytes. The 1509 limit comes from ublox-sara modem and it means we can transfer full Ethernet sized frame and muxing headers. Direct dependencies =================== \ :kconfig:`GSM_MUX ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 127 if \ :kconfig:`MODEM_GSM_SIMCOM ` - 127 if \ :kconfig:`MODEM_GSM_QUECTEL ` - 31 Kconfig definition ================== At ``/console/Kconfig.gsm_mux:60`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` → ``/console/Kconfig:325`` Menu path: (Top) → Device Drivers → Console drivers → Enable GSM 07.10 muxing protocol .. code-block:: kconfig config GSM_MUX_MRU_DEFAULT_LEN int "Default size of received user data (MRU)" range 1 1509 default 127 if MODEM_GSM_SIMCOM default 127 if MODEM_GSM_QUECTEL default 31 depends on GSM_MUX && CONSOLE help Default MRU (Maximum Receive Unit) data size. The default value for Basic mode is 31 bytes. The 1509 limit comes from ublox-sara modem and it means we can transfer full Ethernet sized frame and muxing headers. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*