eclipse / mraa

Linux Library for low speed IO Communication in C with bindings for C++, Python, Node.js & Java. Supports generic io platforms, as well as Intel Edison, Intel Joule, Raspberry Pi and many more.

Home Page:http://mraa.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UART initialization failed on Raspberry Pi 4

matsujirushi opened this issue · comments

Hi,
When I try to use UART on Raspberry Pi 4, the following error occurs.

Error message:

$ sudo python3 uart-test.py
Traceback (most recent call last):
  File "/home/pi/work/uart-test.py", line 6, in <module>
    uart = mraa.Uart(0)
  File "/usr/local/lib/python3.9/dist-packages/mraa.py", line 601, in __init__
    _mraa.Uart_swiginit(self, _mraa.new_Uart(*args))
ValueError: Error initialising UART

Code:

#!/usr/bin/env python3

import mraa
import time

uart = mraa.Uart(0)

It seems that device_path is not set.

if (!path) {

path == NULL

mraa_uart_context dev = mraa_uart_init_raw((char*)plat->uart_dev[index].device_path);

plat->uart_dev[index].device_path == NULL

Does anyone know the cause?