Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android adb wireless debugging with USB accessory

I have adb wireless connection working for debuging applications in eclipse, but I am having an issue with an application that is using the USB cable to attach to an accessory.

The application is designed to start when the accessory is plugged in, SO I establish my ADB connenction and then run debug on eclipse, code loads etc.., now when I plug the accessory in the app starts and runs but loses communication to eclipse. So I can't debug!

like image 876
user1895526 Avatar asked Feb 17 '23 14:02

user1895526


1 Answers

In the command prompt just run adb connect <device ip>:5555 again after the tablet is plugged into the FT311 (I am assuming it is the FT311 from your other question). It will then reconnect and then run adb logcat again and done.

like image 148
TronicZomB Avatar answered Feb 28 '23 06:02

TronicZomB