You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shared-bindings/busio/UART.c
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,12 @@
63
63
//| :param int receiver_buffer_size: the character length of the read buffer (0 to disable). (When a character is 9 bits the buffer will be 2 * receiver_buffer_size bytes.)
64
64
//|
65
65
//| *New in CircuitPython 4.0:* ``timeout`` has incompatibly changed units from milliseconds to seconds.
66
-
//| The new upper limit on ``timeout`` is meant to catch mistaken use of milliseconds."""
66
+
//| The new upper limit on ``timeout`` is meant to catch mistaken use of milliseconds.
67
+
//|
68
+
//| .. note:: RS485 support on i.MX and Raspberry Pi RP2040 is implemented in software.
69
+
//| The timing for the ``rs485_dir`` pin signal is done on a best-effort basis, and may not meet
0 commit comments