Lines Matching +full:dc +full:- +full:dc +full:- +full:mode
10 https://www.3gpp.org/ftp/Specs/archive/07_series/07.10/0710-720.zip
19 ----------------
21 #. Initialize the modem in 0710 mux mode (usually ``AT+CMUX=`` command) through
32 #. Configure DLCs using ``GSMIOC_GETCONF_DLCI``/``GSMIOC_SETCONF_DLCI`` ioctl for non-defaults.
37 (a good starting point is util-linux-ng/sys-utils/ldattach.c)::
50 struct gsm_dlci_config dc;
59 /* send the AT commands to switch the modem to CMUX mode
73 /* use keep-alive once every 5s for modem connection supervision */
88 dc.channel = 1;
89 ioctl(fd, GSMIOC_GETCONF_DLCI, &dc);
91 dc.priority = 1;
93 ioctl(fd, GSMIOC_SETCONF_DLCI, &dc);
106 - to use *gnokii* to send / receive SMS on ``ttygsm1``
107 - to use *ppp* to establish a datalink on ``ttygsm2``
112 mode. This may prevent a successful re-opening of the port later. To avoid
114 a disconnect command frame manually before initializing the multiplexing mode
120 ----------------
122 #. Receive ``AT+CMUX=`` command through its serial port, initialize mux mode
133 #. Configure DLCs using ``GSMIOC_GETCONF_DLCI``/``GSMIOC_SETCONF_DLCI`` ioctl for non-defaults.
147 struct gsm_dlci_config dc;
163 /* use keep-alive once every 5s for peer connection supervision */
178 dc.channel = 1;
179 ioctl(fd, GSMIOC_GETCONF_DLCI, &dc);
181 dc.priority = 1;
183 ioctl(fd, GSMIOC_SETCONF_DLCI, &dc);
192 11-03-08 - Eric Bénard - <eric@eukrea.com>