This is a cache of https://www.96boards.org/documentation/consumer/guides/mraa/uart/. It is a snapshot of the page at 2024-09-20T01:44:35.721+0000.
Examples on how to use UART using mraa library - 96Boards

Examples on how to use UART using mraa library

Following examples are provided to use UART using MRAA library.

  1. mraa_uart.c
  2. mraa_uart.cpp
  3. mraa_uart.py

Usage:

Prerequisite: debian running on 96Boards CE with libmraa installed

  • Copy the examples to 96Boards CE
  • Build the C/C++ examples:
    $ gcc mraa_uart.c -o uart_c
    $ g++ mraa_uart.cpp -o uart_c++
    
  • Execute the examples:
    $ sudo ./uart_c
    $ sudo ./uart_c++
    $ sudo python mraa_uart.py
    

Expected Behaviour:

Sends “Hello Mraa” string to /dev/tty96B0 uart port.