File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ void setup() {
15
15
// Start serial
16
16
Serial.begin (9600 );
17
17
while (!Serial) {
18
- ; // wait for serial port to connect. Needed for Leonardo only
18
+ ; // wait for serial port to connect. Needed for native USB port only
19
19
}
20
20
21
21
// Print length of data to run CRC on.
@@ -49,4 +49,4 @@ unsigned long eeprom_crc(void) {
49
49
crc = ~crc;
50
50
}
51
51
return crc;
52
- }
52
+ }
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ void setup() {
24
24
25
25
Serial.begin (9600 );
26
26
while (!Serial) {
27
- ; // wait for serial port to connect. Needed for Leonardo only
27
+ ; // wait for serial port to connect. Needed for native USB port only
28
28
}
29
29
Serial.print (" Read float from EEPROM: " );
30
30
@@ -65,4 +65,4 @@ void secondTest() {
65
65
66
66
void loop () {
67
67
/* Empty loop */
68
- }
68
+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void setup() {
26
26
27
27
Serial.begin (9600 );
28
28
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
30
30
}
31
31
32
32
float f = 123 .456f ; // Variable to store in EEPROM.
@@ -55,4 +55,4 @@ void setup() {
55
55
56
56
void loop () {
57
57
/* Empty loop */
58
- }
58
+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ void setup() {
16
16
// initialize serial and wait for port to open:
17
17
Serial.begin (9600 );
18
18
while (!Serial) {
19
- ; // wait for serial port to connect. Needed for Leonardo only
19
+ ; // wait for serial port to connect. Needed for native USB port only
20
20
}
21
21
}
22
22
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ void setup() {
33
33
// Open serial communications and wait for port to open:
34
34
Serial.begin (57600 );
35
35
while (!Serial) {
36
- ; // wait for serial port to connect. Needed for Leonardo only
36
+ ; // wait for serial port to connect. Needed for native USB port only
37
37
}
38
38
39
39
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ void setup() {
46
46
// Open serial communications and wait for port to open:
47
47
Serial.begin (9600 );
48
48
while (!Serial) {
49
- ; // wait for serial port to connect. Needed for Leonardo only
49
+ ; // wait for serial port to connect. Needed for native USB port only
50
50
}
51
51
52
52
You can’t perform that action at this time.
0 commit comments