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.