:orphan: .. title:: CONFIG_GSM_MUX_DLCI_MAX .. kconfig:: CONFIG_GSM_MUX_DLCI_MAX CONFIG_GSM_MUX_DLCI_MAX ####################### *Max number of GSM data link connection (DLC) instances* Type: ``int`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`GSM_MUX ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Default ======= - 3 Kconfig definition ================== At ``/console/Kconfig.gsm_mux:20`` 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_DLCI_MAX int "Max number of GSM data link connection (DLC) instances" range 1 64 default 3 depends on GSM_MUX && 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.)*