Skip to content

Commit f31bab2

Browse files
committed
Modified reference to Leonardo only in the examples
According to #3786 removed the reference to Leonardo only in while(!Serial) of the examples. Changed in in "wait for serial port to connect. Needed for native USB port only"
1 parent c12e1d4 commit f31bab2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void setup() {
5959
// print some diagnostic info
6060
Serial.begin(9600);
6161
while (!Serial) {
62-
// wait for serial line to be ready
62+
// wait for serial port to connect. Needed for native USB port only
6363
}
6464

6565
// clear the GLCD screen before starting

examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void setup() {
5050
// print some diagnostic info
5151
Serial.begin(9600);
5252
while (!Serial) {
53-
// wait for serial monitor to be open
53+
// wait for serial port to connect. Needed for native USB port only
5454
}
5555

5656
// try to access the SD card. If that fails (e.g.

0 commit comments

Comments
 (0)