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.

K1

  • 2D Extended Pinout Diagram

image-20251111105928204

  • Diagram

image-20251111105842866

K1B

  • 2D Extended Pinout Diagram

image-20251111105656633

  • Diagram

image-20251111105547289

Preparation

  • Software: Mobaxterm
  • Hardware: Serial Debug Cable

Note

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

Connection Setup

K1

  • Image Example

9a06ff0d152f9001a068b7dbbfd37961

K1B

  • Image Example

902079dcc49e8ee64109c3fef9482066

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

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

c28afa32d36a4a6f3104b29aaa1abe86

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