Author |
Post |
|
#1 Thu Apr 19, 2012 20:31, 153 months ago.
|
Member
Registered: Apr 2012
Location: Athens, Greece
|
Hi all, My Wavecom has installed fine. What I need to know is "how can I make a call with AT commands from Linux console"?
I found the command, it is: ATDnumber;
But how can I ask via Linux console? What is the command?
Thanks in advance!
|
|
#2 Sun Apr 22, 2012 06:15, 153 months ago.
|
Member
Registered: Apr 2012
Location: Athens, Greece
Topic owner
|
Hi guys, Found it and I think it is useful to post it here, for linux shell script lovers.
#!/bin/bash echo 'AT' > /dev/ttyS0 echo 'ATD6994444444;' > /dev/ttyS0 sleep 7 echo 'ATH' > /dev/ttyS0
Note: You should replace the example phone number 6994444444
Cheers!
|