How to connect UART-to-USB Bridge for Raspberry Pi

In this tutorial you will learn how to physically connect your Raspberry Pi to a UART Bridge and additionally how to connect to your device and gather logs using PuTTY.

  1. Enable UART connection.
    1. Connect your SD card with emteria.OS to your PC and mount the boot partition.
    2. Open config.txt and add the following line:
      enable_uart=1
    3. Open cmdline.txt and change:
       console=serial2 to console=serial0
    4. Save the files, safely remove the SD card, and put it back into your Raspberry Pi.
  2. Connect your RPi to your UART Bridge.
    Connect Pin 6 (GND), Pin 8 (GPIO 14 / TXD), and Pin 10 (GPIO 15 / RXD) to the Ground, RXD, TXD Pin of the Bridge, respectively.
    Connect your RPi to your UART Bridge
    1. This leads to:
      Ground of the Bridge to Pin 6 (GND) of the RPi
      RXD Pin of the Bridge to Pin 8 (GPIO 14 / TXD) of the RPi
      TXD Pin of the Bridge to Pin 10 (GPIO 15 / RXD) of the RPi
      UART Bridge
  3. Connect the UART Bridge with your computer and open computer management
    1. Look for COM & LPT Ports. You will need the number of the COM port in a next step.
    2. Depending on your Windows version you might need to install the Virtual COM Port drivers of the UART Bridge manufacturer (for example).
      Connect the UART Bridge with your computer and open computer management
  4. Download, install and open PuTTY.

    Get the latest version of PuTTY.

  5. Configure serial connection.
    1. Switch to the serial category. Enter the COM port that you determined from computer management.

    2. Configure the serial line:
      Speed (baud): 115200
      Data bits: 8
      Stop bits: 1
      Parity: None
      Flow control: None
      Configure the serial line

  6. Enable Logging.
    Switch to the logging category. Select all session output and an appropriate file. 
    Enable Logging
  7. Save session and connect.
    1. Switch to the session category.
    2. Select serial as a connection type.
    3. Enter a session name and click save.
      It will appear in the list below. This is handy for the future. If you restart PuTTY you won’t have to reconfigure the serial connection and logging, but just load the appropriate session.
    4. Click Open.
      Click open putty session marked
  8. The PuTTY terminal.
    1. After you click to Open a new window is opened.
    2. Power up your device and you should see the boot-up log.
      If your device already booted up successfully and is idle you will just see a black window:
      Power up your device and you should see the boot-up log
    3. Click into the window and press enter. The RPi Shell will appear.
  9. Android log.
    1. Having the RPi Shell you can use logcat to get android logs.
      Having the RPi Shell you can use logcat to get android logs
    2. All output of the terminal should be saved in the file you have selected in the logging category of PuTTY.
    3. If the black window remains and you don’t get to the shell, start from step one and check once again.