UART read failed
-
This post is deleted!
-
@pabloIsrael16 uart.read() is not blocking. If there is no data in the input buffer, it returns None. You can use uart.any() for telling, whther there is data for reading. Or you can set a timeout. Then uart.read() will wait at least for that time.