aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArturo Guadalupi <a.guadalupi@arduino.cc>2015-09-21 14:44:19 +0200
committerArturo Guadalupi <a.guadalupi@arduino.cc>2015-09-21 14:58:58 +0200
commitd775df409f857ba3a1cc24ecfacbe1321e6fb2ea (patch)
tree6d7cec6e574ad6b3e2172681ff7df533d14073a1
parent987b9bf2a86ba7dfa8c8c24128e19e2048a837b8 (diff)
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"
-rw-r--r--libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino4
-rw-r--r--libraries/EEPROM/examples/eeprom_get/eeprom_get.ino4
-rw-r--r--libraries/EEPROM/examples/eeprom_put/eeprom_put.ino4
-rw-r--r--libraries/EEPROM/examples/eeprom_read/eeprom_read.ino2
-rw-r--r--libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino2
-rw-r--r--libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino2
6 files changed, 9 insertions, 9 deletions
diff --git a/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino b/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino
index d14b4b3..c6db85c 100644
--- a/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino
+++ b/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino
@@ -15,7 +15,7 @@ void setup() {
//Start serial
Serial.begin(9600);
while (!Serial) {
- ; // wait for serial port to connect. Needed for Leonardo only
+ ; // wait for serial port to connect. Needed for native USB port only
}
//Print length of data to run CRC on.
@@ -49,4 +49,4 @@ unsigned long eeprom_crc(void) {
crc = ~crc;
}
return crc;
-} \ No newline at end of file
+}
diff --git a/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino b/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino
index bbebc48..a07cee7 100644
--- a/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino
+++ b/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino
@@ -24,7 +24,7 @@ void setup() {
Serial.begin(9600);
while (!Serial) {
- ; // wait for serial port to connect. Needed for Leonardo only
+ ; // wait for serial port to connect. Needed for native USB port only
}
Serial.print("Read float from EEPROM: ");
@@ -65,4 +65,4 @@ void secondTest() {
void loop() {
/* Empty loop */
-} \ No newline at end of file
+}
diff --git a/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino b/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino
index fe8a9fb..c1ba0a5 100644
--- a/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino
+++ b/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino
@@ -26,7 +26,7 @@ void setup() {
Serial.begin(9600);
while (!Serial) {
- ; // wait for serial port to connect. Needed for Leonardo only
+ ; // wait for serial port to connect. Needed for native USB port only
}
float f = 123.456f; //Variable to store in EEPROM.
@@ -55,4 +55,4 @@ void setup() {
void loop() {
/* Empty loop */
-} \ No newline at end of file
+}
diff --git a/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino b/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino
index 25bc5d9..a8a3510 100644
--- a/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino
+++ b/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino
@@ -16,7 +16,7 @@ void setup() {
// initialize serial and wait for port to open:
Serial.begin(9600);
while (!Serial) {
- ; // wait for serial port to connect. Needed for Leonardo only
+ ; // wait for serial port to connect. Needed for native USB port only
}
}
diff --git a/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino b/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
index d35303d..aba6ebe 100644
--- a/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
+++ b/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
@@ -33,7 +33,7 @@ void setup() {
// Open serial communications and wait for port to open:
Serial.begin(57600);
while (!Serial) {
- ; // wait for serial port to connect. Needed for Leonardo only
+ ; // wait for serial port to connect. Needed for native USB port only
}
diff --git a/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino b/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino
index 2c501e5..26659d6 100644
--- a/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino
+++ b/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino
@@ -46,7 +46,7 @@ void setup() {
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
- ; // wait for serial port to connect. Needed for Leonardo only
+ ; // wait for serial port to connect. Needed for native USB port only
}