Skip to content

Commit f74263b

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 f8a4f09 commit f74263b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/CardInfo/CardInfo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void setup() {
3838
// Open serial communications and wait for port to open:
3939
Serial.begin(9600);
4040
while (!Serial) {
41-
; // wait for serial port to connect. Needed for Leonardo only
41+
; // wait for serial port to connect. Needed for native USB port only
4242
}
4343

4444

examples/Datalogger/Datalogger.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void setup() {
2929
// Open serial communications and wait for port to open:
3030
Serial.begin(9600);
3131
while (!Serial) {
32-
; // wait for serial port to connect. Needed for Leonardo only
32+
; // wait for serial port to connect. Needed for native USB port only
3333
}
3434

3535

examples/DumpFile/DumpFile.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void setup() {
2929
// Open serial communications and wait for port to open:
3030
Serial.begin(9600);
3131
while (!Serial) {
32-
; // wait for serial port to connect. Needed for Leonardo only
32+
; // wait for serial port to connect. Needed for native USB port only
3333
}
3434

3535

examples/Files/Files.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void setup() {
2626
// Open serial communications and wait for port to open:
2727
Serial.begin(9600);
2828
while (!Serial) {
29-
; // wait for serial port to connect. Needed for Leonardo only
29+
; // wait for serial port to connect. Needed for native USB port only
3030
}
3131

3232

examples/ReadWrite/ReadWrite.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void setup() {
2727
// Open serial communications and wait for port to open:
2828
Serial.begin(9600);
2929
while (!Serial) {
30-
; // wait for serial port to connect. Needed for Leonardo only
30+
; // wait for serial port to connect. Needed for native USB port only
3131
}
3232

3333

examples/listfiles/listfiles.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void setup() {
3030
// Open serial communications and wait for port to open:
3131
Serial.begin(9600);
3232
while (!Serial) {
33-
; // wait for serial port to connect. Needed for Leonardo only
33+
; // wait for serial port to connect. Needed for native USB port only
3434
}
3535

3636
Serial.print("Initializing SD card...");

0 commit comments

Comments
 (0)