I need to send AT command to modem. I am using samsung galaxy S3 I9300 device, which is rooted.
The steps I did are:
abd shell
su
echo -e "AT\r"
But I am not sure how to read the response given by the above commands. I tried to redirect the command as follows:
echo -e "AT\r" > /dev/smd0
, but when I execute cat /dev/smd0
I do not see any response I just see "AT". Seems like the command I intended to be executed is interpreted just as string and I see that string instead of the result of that operation.
Please advice what am I doing wrong.
I suggest that you try out my atinout program which should be exactly what you are asking for: a program to send AT commands from the command line and capture the output.
In your case the result should be like
$ abd shell
$ su
$ echo AT | atinout - /dev/smd0 -
OK
$
and to capture the output just put a file name instead of the last -
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With