blob: 755a0a318276896b0b3bcf26932b261bfd3c3855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
opengt
set com 115200n81
set senddelay 0.02
waitquiet 1 0.2
flash 0.1
:start
send "AT_OWANCALL=1,0,0^m"
waitfor 2 "OK"
if % = -1 goto error
if % = 0 goto continue
:error
exit 1
:continue
exit 0
|