File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -29,5 +29,8 @@ A ``SoftwareSerial`` wrapper is included to provide plug-and-play compatibility
29
29
with the Arduino `Software Serial <https://docs.arduino.cc/learn/built-in-libraries/software-serial >`_
30
30
library. Use the normal ``#include <SoftwareSerial.h> `` to include it. The following
31
31
differences from the Arduino standard are present:
32
+
32
33
* Inverted mode is not supported
33
- * All ports are always listening. The ``listen `` call is a no-op, and ``isListening() `` always returns ``true `` .
34
+ * All ports are always listening
35
+ * ``listen `` call is a no-op
36
+ * ``isListening() `` always returns ``true ``
Original file line number Diff line number Diff line change @@ -32,15 +32,14 @@ using the ``setFIFOSize`` call prior to calling ``begin()``
32
32
Serial1.begin(baud);
33
33
34
34
The FIFO is normally handled via an interrupt, which reduced CPU load and
35
- makes it less likely to lose characters. However, the FIFO introduces up
36
- to 32 bit-times of delay before serial data is available to the application.
35
+ makes it less likely to lose characters.
37
36
38
- For applications where this is an issue (i.e. very low baud) , use
37
+ For applications where an IRQ driven serial port is not appropriate , use
39
38
``setPollingMode(true) `` before calling ``begin() ``
40
39
41
40
.. code :: cpp
42
41
Serial1.setPollingMode(true);
43
- Serial1.begin(110 )
42
+ Serial1.begin(300 )
44
43
45
44
For detailed information about the Serial ports, see the
46
45
Arduino `Serial Reference <https://www.arduino.cc/reference/en/language/functions/communication/serial/ >`_ .
You can’t perform that action at this time.
0 commit comments