diff options
author | Arturo Guadalupi <a.guadalupi@arduino.cc> | 2015-09-21 14:44:19 +0200 |
---|---|---|
committer | Arturo Guadalupi <a.guadalupi@arduino.cc> | 2015-09-21 14:58:58 +0200 |
commit | d775df409f857ba3a1cc24ecfacbe1321e6fb2ea (patch) | |
tree | 6d7cec6e574ad6b3e2172681ff7df533d14073a1 /libraries/EEPROM/examples/eeprom_read/eeprom_read.ino | |
parent | 987b9bf2a86ba7dfa8c8c24128e19e2048a837b8 (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"
Diffstat (limited to 'libraries/EEPROM/examples/eeprom_read/eeprom_read.ino')
-rw-r--r-- | libraries/EEPROM/examples/eeprom_read/eeprom_read.ino | 2 |
1 files changed, 1 insertions, 1 deletions
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 } } |