Terminal Connection#

To connect to a terminal, use either the serial uart debug port or a ssh connection within the local network.

Danger

These settings are made to simplify the development process only. For a productive device, it is required to set a strong root password. Additionally, it is recommended to disable the root login.

Serial Connection#

Connect your computer via the USB-to-Serial converter, which is provided with the development kits, to the Console I/O Port. Subsequently, open a serial connection at a baud rate of 115200. On Linux, we recommend picocom. PuTTY can be used on Windows.

# Sample command using picocom
picocom -b 115200 /dev/ttyUSB0

Network connection using ssh#

To connect to a Linux terminal, ssh can be used with the following settings.

  • ssh within the local network

    • username: root

    • passord: <empty>

    • IP address is displayed in: settings -> info on the display

# Sample command using the OpenSSH-Client
ssh root@<IP address>