Skip to content

Commit 69cae7b

Browse files
authored
Merge pull request #295 from yaxu/patch-1
Make clear that you cannot transmit and receive data at the same time
2 parents d004ead + 2edb059 commit 69cae7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/learn/07.built-in-libraries/04.software-serial/software-serial.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ To use this library:
1919

2020
SoftwareSerial library has the following known limitations:
2121

22+
* It cannot transmit and receive data at the same time.
2223
* If using multiple software serial ports, only one can receive data at a time.
2324
* Not all pins on the Mega and Mega 2560 boards support change interrupts, so only the following can be used for RX: 10, 11, 12, 13, 14, 15, 50, 51, 52, 53, A8 (62), A9 (63), A10 (64), A11 (65), A12 (66), A13 (67), A14 (68), A15 (69).
2425
Not all pins on the Leonardo and Micro boards support change interrupts, so only the following can be used for RX: 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI).
@@ -668,4 +669,4 @@ void loop() {
668669
* [read()](#read)
669670
* [print()](#print)
670671
* [println()](#println)
671-
* [listen()](#listen)
672+
* [listen()](#listen)

0 commit comments

Comments
 (0)