We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
mraa/src/uart/uart.c
Line 240 in 046bdd0
path == NULL
Line 217 in 046bdd0
plat->uart_dev[index].device_path == NULL
Does anyone know the cause?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When I try to use UART on Raspberry Pi 4, the following error occurs.
Error message:
Code:
It seems that device_path is not set.
mraa/src/uart/uart.c
Line 240 in 046bdd0
mraa/src/uart/uart.c
Line 217 in 046bdd0
Does anyone know the cause?
The text was updated successfully, but these errors were encountered: