Skip to content

Commit b8005de

Browse files
committed
remove stray error prints
1 parent 8763000 commit b8005de

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/uniqueHWId.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,18 @@ bool UniqueHWId::begin() {
1919

2020
bool UniqueHWId::get(uint8_t* in, uint32_t size) {
2121
if (_init == false || size < BOARD_PROVISIONING_ID_SIZE) {
22-
Serial.println("BOARD_PROVISIONING_ID_SIZE ERROR");
2322
return false;
2423
}
2524
uint8_t offset = 0;
2625
if (!microId::get(&in[offset], size)) {
27-
Serial.println("microId ERROR");
2826
return false;
2927
}
3028
offset += UC_UID_SIZE;
3129
if (!_nId.get(&in[offset], size - offset)) {
32-
Serial.println("networkId ERROR");
3330
return false;
3431
}
3532
offset += IFACE_MAC_ADDR_LENGTH;
3633
if (!_sId.get(&in[offset], size - offset)) {
37-
Serial.println("secureId ERROR");
3834
return false;
3935
}
4036
return true;

0 commit comments

Comments
 (0)