System Login
Account and Password
Default user and passwords for different systems are as follows:
| System | Username | Password |
|---|---|---|
| Debian11 | linaro | linaro |
| Debian11 | root | root |
| Ubuntu20.04 | kickpi | kickpi |
| Ubuntu20.04 | root | root |
Mobaxterm
UART Pins
Before performing UART debugging, please locate the UART pins as described.
K5C
- Pinout Diagram

- Diagram

Preparation
-
Software: MobaXterm_Portable_v20.3.zip
-
Hardware: Serial Debug Cable
Note
Red: VCC (Not needed); Green: TX; White: RX; Black: GND
.jpg)
Connection Setup
- Installation Example

Mobaxterm Configuration
1. Open Mobaxterm on your Windows computer and click "Session" to create a new session window.
2. Select the session type as "Serial".
3. Select the COM port number (Check the COM number in Windows Device Manager under "Ports (COM & LPT)").
4. Set the Speed (bps) to 115200.
5. Start the session window.
As shown in the figure, after clicking OK, you will enter the command line input window.

If the board is powered on and connected to the computer, Mobaxterm will show kernel print during board's boot process.

Once connected successfully, press Enter in the command line interface to start entering commands.

At this point, you have successfully connected to the board's terminal via the serial port. You can now use various commands to control and debug .
ADB
The Android system supports ADB functionality. ADB (Android Debug Bridge) is a debug bridge tool for Android system development. It supports connecting to devices via USB or network, enabling device management and debugging operations such as app installation, file transfer, and command execution.
Preparation
- Hardware: USB Type-C Cable
- Software: ADB-tools.rar
Connection Setup
- K5C Installation Diagram: Connect one end of the Type-C cable to the board and the other end to your host computer.

ADB Installation
- Unzip the
adb-tools.rarfile, for example, to the pathD:\ADB\adb-tools. -
Open a Command Prompt (cmd) window and switch to the unzipped directory.
3. Run the following command. A successful run indicates ADB is installed correctly.
4. Start ADB debugging.