* trying setCRC(1)

このコミットが含まれているのは:
Scott Powell
2025-03-09 22:15:58 +11:00
コミット a259d27cfe
5個のファイルの変更6行の追加5行の削除
+2 -1
ファイルの表示
@@ -52,10 +52,11 @@ int RadioLibWrapper::recvRaw(uint8_t* bytes, int sz) {
int err = _radio->readData(bytes, len);
if (err != RADIOLIB_ERR_NONE) {
MESH_DEBUG_PRINTLN("RadioLibWrapper: error: readData(%d)", err);
len = 0;
} else {
// Serial.print(" readData() -> "); Serial.println(len);
n_recv++;
}
n_recv++;
}
state = STATE_IDLE; // need another startReceive()
return len;