Skip to content

Commit b226385

Browse files
committed
Comment out print statements
1 parent 3d5097c commit b226385

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/I2CDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bool I2CDevice::persistRegister(RegisterInfo registerInfo){
1919
return true;
2020
}
2121
// 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...");
2323
// Exponential sleep duration
2424
delayMicroseconds(100 * (2 << i));
2525
}

src/NiclaSenseEnv.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ bool NiclaSenseEnv::persistSettings() {
8686
return true;
8787
}
8888
// 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...");
9090
// Exponential sleep duration
9191
delayMicroseconds(100 * (2 << i));
9292
}
@@ -139,7 +139,7 @@ bool NiclaSenseEnv::restoreFactorySettings() {
139139
if ((boardControlRegisterData & (1 << 5)) == 0) {
140140
return persistSettings();
141141
}
142-
Serial.println("⌛️ Waiting for factory reset to complete...");
142+
// Serial.println("⌛️ Waiting for factory reset to complete...");
143143
// Exponential sleep duration
144144
delayMicroseconds(100 * (2 << i));
145145
}

0 commit comments

Comments
 (0)