1. If you can already connect to adb with USB, you can switch to wireless connection by using the following command. ADB tcpip 5555adb Connect 192.168.0.101:5555 The following command to switch back to USB mode. ADB USB 1), connect the Development Board with the PC with a USB cable, open cmd, enter the ADB tcpip 5555 to set the ADBD service port 2), enter ADB kill-server shut down the PC side of the ADB service, in order to be able to disconnect the USB connection 3), enter the ADB connect IP address to start the ADB network debug mode 4), so Eclipse has only one target, do not always point to the point of 2. If you cannot connect via USB, For example, because there is no driver or no data cable, you can switch to wireless connection by executing the following command on the device. Note that this method requires root permissions. SetProp service.adb.tcp.port 5555stop adbdstart adbd switch back to USB mode with the following command. SetProp service.adb.tcp.port-1stop Adbdstart ADBD
ADB Wireless network debugging