Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending AT Commands Via ADB Android

I have a task at work to investigate if it is possible to send AT commands to an android device via ADB shell. So far,I have tried to echo out the AT commands but it passes them as normal strings. Any help please anyone.

like image 469
Sani Yusuf Avatar asked Oct 12 '12 08:10

Sani Yusuf


1 Answers

In order to find out which port to use : You can check

# cat /proc/tty/drivers

Use logcat -b radio | grep dev to see wich tty the radio is using.

like image 106
MRodrigues Avatar answered Sep 28 '22 02:09

MRodrigues