From: Felix Fietkau Date: Fri, 28 Oct 2011 11:30:21 +0000 (+0000) Subject: comgt: add missing file (fixes #10301) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=2a7ca2af611fd6741283879a46ccfa38116ba9c0 comgt: add missing file (fixes #10301) SVN-Revision: 28648 --- diff --git a/package/comgt/files/getcarrier.gcom b/package/comgt/files/getcarrier.gcom new file mode 100644 index 0000000000..1e0216d46a --- /dev/null +++ b/package/comgt/files/getcarrier.gcom @@ -0,0 +1,20 @@ +opengt + set senddelay 0.05 + waitquiet 1 0.2 + let c=1 + :loop + inc c + send "AT+CGATT?^m" + waitfor 5 "+CGATT: 1","+CGATT: 0" + print "\n." + if % = -1 goto error + if c > 10 goto toolong + if % = 0 goto out + sleep 2 + if % = 1 goto loop + :toolong + exit 1 + :error + exit 0 + :out + exit 0