Skip to content

Commit

Permalink
Better wording promotes understanding.
Browse files Browse the repository at this point in the history
  • Loading branch information
dok-net committed Feb 14, 2021
1 parent 4daa5f1 commit b4f1efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/swsertest/swsertest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ SoftwareSerial swSer;
void setup() {
Serial.begin(115200);
// Important: the buffer size optimizations here, in particular the isrBufSize (11) that is only sufficiently
// large to hold up to a single word (up to 8E2), are on the basis that any char written to the loopback SoftwareSerial
// adapter gets read before another write is performed.
// large to hold a single word (up to start - 8 data - parity - stop), are on the basis that any char written
// to the loopback SoftwareSerial adapter gets read before another write is performed.
// Block writes with a size greater than 1 would usually fail. Do not copy this into your own project without
// reading the documentation.
swSer.begin(BAUD_RATE, SWSERIAL_8N1, D5, D6, false, 95, 11);
Expand Down

0 comments on commit b4f1efd

Please sign in to comment.