:orphan: .. title:: MODEM_GSM_ATTACH_TIMEOUT .. option:: CONFIG_MODEM_GSM_ATTACH_TIMEOUT *Timeout for attaching to packet service* Type: ``int`` Help ==== .. code-block:: none Before activating PPP, attachment to packet service is checked using AT+CGATT. This setting dictates how much time in seconds we give the modem before giving up. Direct dependencies =================== \ :option:`MODEM_GSM_PPP ` && \ :option:`MODEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 30 Kconfig definition ================== At ``/modem/Kconfig.gsm:65`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/Kconfig:82`` → ``/modem/Kconfig:139`` Menu path: (Top) → Device Drivers → Modem Drivers → Support GSM modems .. code-block:: kconfig config MODEM_GSM_ATTACH_TIMEOUT int "Timeout for attaching to packet service" default 30 depends on MODEM_GSM_PPP && MODEM help Before activating PPP, attachment to packet service is checked using AT+CGATT. This setting dictates how much time in seconds we give the modem before giving up. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*