File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ bool I2CDevice::persistRegister(RegisterInfo registerInfo){
19
19
return true ;
20
20
}
21
21
// Even a value of 1 us seems to work, but we start with 100 us to be safe.
22
- Serial.println (" ⌛️ Waiting for flash write to complete..." );
22
+ // Serial.println("⌛️ Waiting for flash write to complete...");
23
23
// Exponential sleep duration
24
24
delayMicroseconds (100 * (2 << i));
25
25
}
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ bool NiclaSenseEnv::persistSettings() {
86
86
return true ;
87
87
}
88
88
// Even a value of 1 us seems to work, but we start with 100 us to be safe.
89
- Serial.println (" ⌛️ Waiting for flash write to complete..." );
89
+ // Serial.println("⌛️ Waiting for flash write to complete...");
90
90
// Exponential sleep duration
91
91
delayMicroseconds (100 * (2 << i));
92
92
}
@@ -139,7 +139,7 @@ bool NiclaSenseEnv::restoreFactorySettings() {
139
139
if ((boardControlRegisterData & (1 << 5 )) == 0 ) {
140
140
return persistSettings ();
141
141
}
142
- Serial.println (" ⌛️ Waiting for factory reset to complete..." );
142
+ // Serial.println("⌛️ Waiting for factory reset to complete...");
143
143
// Exponential sleep duration
144
144
delayMicroseconds (100 * (2 << i));
145
145
}
You can’t perform that action at this time.
0 commit comments