Skip to content

Commit c32ad45

Browse files
Clean up some minor doc errors/formats (#559)
1 parent 541e23d commit c32ad45

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

docs/piouart.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@ A ``SoftwareSerial`` wrapper is included to provide plug-and-play compatibility
2929
with the Arduino `Software Serial <https://docs.arduino.cc/learn/built-in-libraries/software-serial>`_
3030
library. Use the normal ``#include <SoftwareSerial.h>`` to include it. The following
3131
differences from the Arduino standard are present:
32+
3233
* 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``

docs/serial.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,14 @@ using the ``setFIFOSize`` call prior to calling ``begin()``
3232
Serial1.begin(baud);
3333
3434
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.
3736

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
3938
``setPollingMode(true)`` before calling ``begin()``
4039

4140
.. code:: cpp
4241
Serial1.setPollingMode(true);
43-
Serial1.begin(110)
42+
Serial1.begin(300)
4443
4544
For detailed information about the Serial ports, see the
4645
Arduino `Serial Reference <https://www.arduino.cc/reference/en/language/functions/communication/serial/>`_ .

0 commit comments

Comments
 (0)