Skip to content

Commit b4f1efd

Browse files
committed
Better wording promotes understanding.
1 parent 4daa5f1 commit b4f1efd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/swsertest/swsertest.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ SoftwareSerial swSer;
3131
void setup() {
3232
Serial.begin(115200);
3333
// Important: the buffer size optimizations here, in particular the isrBufSize (11) that is only sufficiently
34-
// large to hold up to a single word (up to 8E2), are on the basis that any char written to the loopback SoftwareSerial
35-
// adapter gets read before another write is performed.
34+
// large to hold a single word (up to start - 8 data - parity - stop), are on the basis that any char written
35+
// to the loopback SoftwareSerial adapter gets read before another write is performed.
3636
// Block writes with a size greater than 1 would usually fail. Do not copy this into your own project without
3737
// reading the documentation.
3838
swSer.begin(BAUD_RATE, SWSERIAL_8N1, D5, D6, false, 95, 11);

0 commit comments

Comments
 (0)