:orphan: .. title:: GSM_MUX_DLCI_MAX .. option:: CONFIG_GSM_MUX_DLCI_MAX *Max number of GSM data link connection (DLC) instances* Type: ``int`` Help ==== For our purposes we will manage with 3 DLCI (control, ppp, and AT commands) so making it the default value. If GSM modem also provides GNSS (location) services and you want to create a DLCI for it, then you need to increase this to 4. Direct dependencies =================== \ :option:`GSM_MUX ` && \ :option:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Default ======= - 3 Kconfig definition ================== .. highlight:: kconfig At ``drivers/console/Kconfig.gsm_mux:20`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:14`` → ``drivers/console/Kconfig:330`` Menu path: (Top) → Device Drivers → Console drivers → Enable GSM 07.10 muxing protocol .. parsed-literal:: config GSM_MUX_DLCI_MAX int "Max number of GSM data link connection (DLC) instances" range 1 64 default 3 depends on \ :option:`GSM_MUX ` && \ :option:`CONSOLE ` help For our purposes we will manage with 3 DLCI (control, ppp, and AT commands) so making it the default value. If GSM modem also provides GNSS (location) services and you want to create a DLCI for it, then you need to increase this to 4. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*