Moverio USB debugging on Mac

I just went to the Moverio BT-100, Epson looks as good as a paper bag. Has anyone been able to get USB Debugging / ADB to see it on a Mac?

+4
source share
2 answers

Burf.

You need to go to the ".android" folder. To find it, just open the terminal and write:

cd
cd .android/

After that, you need to modify the adb_usb.ini file (I recommend backing it up earlier) and add the vendor ID after the last line. In this case, for Epson it is: 0x04B8.

After that, it should look like this:

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0xXXXX
0x04B8

Then you need to save the file and run it:

adb kill-server
adb start-server

, USB , adb "" .

adb devices

, .

Aernarion.

+8

1) (0x04B8) ~ usr/.android/adb_usb.ini

# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x04B8

2) adb_usb.ini .

A.  Bring up command prompt.
B.  Type "adb kill-server" then enter.
C.  Type "adb start-server" then enter.
D.  Type "adb devices" then enter.
E.  You should see BT-200 as one of the devices.
0

Source: https://habr.com/ru/post/1530000/


All Articles