* fix NRF communication for opendtufusion ethernet variant
This commit is contained in:
lumapu 2023-12-16 03:06:28 +01:00
parent 222bf0e54a
commit f191c036bb
8 changed files with 29 additions and 17 deletions

View file

@ -31,6 +31,7 @@ class CommQueue {
}
uint8_t getFillState(void) {
DPRINTLN(DBG_INFO, "wr: " + String(mWrPtr) + ", rd: " + String(mRdPtr));
return abs(mRdPtr - mWrPtr);
}