Thundercomm TurboX C8550 - Using ADB
ADB (Android Debug Bridge) is a command-line tool for communicating to a device with ADB enabled. The tool works as client/server communication, where the client can send commands to a device, the server is in charge of connecting to the device and a Daemon that actually executes the commands sent by the client. ADB allows actions such as file sharing between computer and device an running shell commands on the device.
This section will help you into accessing the board with ADB. Please follow the next steps:
1. Plug a USB-C cable between your PC and the USB Type C port from the board.
2. Check the board was detected by the PC:
adb devices
You should see an output similar to this one:
List of devices attached
7eb85c45 device
3. Log in to the board:
adb root
adb shell
4. You should be able to run commands inside the board now.