Google Chat: zj734465502@gmail.com
+86-0755-88291180
sales01@spotpear.com
dragon_manager@163.com
services01@spotpear.com
manager01@spotpear.com
WhatsApp:13246739196
Download adb-fastboot.zip and unzip it to use; It is recommended to add the decompressed directory to the environment variables for easy access to CMD.
Just enter the adb command in CMD, and if the relevant commands appear, it indicates that the ADB tool's environmenr variables have been configured successfully.
(Enter the following command in the command prompt on the PC side.)
] Check ADB devices:
adb devices
## List of devices attached
##43c950d04075784c device
] Use ADB to access the system terminal via USB:
adb -s 43c950d04075784c shell
(Note: In the previous context, “43c950d04075784c” is the ID of the USB device. Users should modify it according to the actual ID of their USB device.)
(Enter the following command in the command prompt on the PC side.)
] Connecting ADB to the development board’s network IP:
adb connect 192.168.0.187
## already connected to 192.168.0.187:5555
] Viewing devices:
adb devices
## List of devices attached
## 192.168.0.187:5555 device
] Accessing the system terminal of the development board through the Ethernet port using ADB:
adb -s 192.168.0.187:5555 shell
(Note: Please modify the IP address “192.168.10.67” in the previous text according to your actual IP address.)