Skip to content

System Login

This guide aims to help users set up UART connection for debugging.

Account and Password

Default usernames 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

Board UART Pins

Before performing UART debugging, please locate the UART pins as described.

K3

  • 2D Extended Pinout Diagram

image-20251111144231717

  • Diagram

image-20251111135014342

Preparation

  • Software: Mobaxterm
  • Hardware: Serial Debug Cable

Note

Red: VCC (Not needed for connection); Green: TX; White: RX; Black: GND

Connection Setup

K3

  • Image Example

b94a66364f4da904af48c0267f9a813f

Mobaxterm Configuration

  1. Click "Session" to create a new session window.
  2. Select the session window type as 'Serial'.
  3. Select the serial COM port number (Check the COM number in the Windows Device Manager -> Ports section).
  4. Set the Speed (bps) to 1500000.
  5. Start the session window.

  6. As shown in the figure,After clicking OK, you will enter the command line input window.

When the board is powered on and connected to the computer, Mobaxterm will display the information output of the development board during startup.

Once the connection is successfully established, press Enter in the command line interface to input commands.

At this point, we have successfully connected to the development board's terminal via the serial port. Now we can use various commands to control and debug the development board.

ADB

Android supports the use of ADB functionality. ADB (Android Debug Bridge) is a development and debugging bridge tool for the Android system. It supports connecting devices via USB or network, enabling device management and debugging operations such as application installation, file transfer, and command execution.

Preparation

  • Hardware: Double male USB Type-C cable
  • Software: ADB_Tool

Connection Setup

  • K3 Installation Diagram: Connect one end of the Type-C data cable to the motherboard and the other end to the personal host computer.

e257d2b2c6906bbd22dd162eef3303e9

ADB Installation

1.Extract the adb-tools.rar archive, for example, to the D:\ADB\adb-tools directory.

2.Open the cmd window and navigate to the extracted directory.

cd D:\ADB\adb-tools

3.Run the command. Successful execution indicates a successful installation.

adb --version

image-20251030103509920

4.Enable ADB debugging.

.\adb.exe shell