Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.47 KB

File metadata and controls

41 lines (28 loc) · 1.47 KB

FingerReader_SerialTest

A simple Android app used to test the UART serial communication of the Qualcomm 410 board used in FingerReader.

Prerequisites

Ensure Android device contains root access. Supports Android devices >= API level 21 (Lollipop)

Getting started

The UART0 port of the Variscite Carrier board can be used to assess functionality. Please check out the product page and schematics for details.

The app creates a feedback loop to test the functionality of the UART0 serial device(i.e. what is written gets read back). Tie the Tx and Rx connections of the UART0 together to enable this.

Running the tests through ADB (Android Debug Bridge)

Access to serial port(from Windows):

adb shell su
cd /dev/ttyHS4

To write from serial port:

echo message > /dev/ttyHS4

To read from serial port:

read X < ttyHS4
echo $X

Built With