* add `ARC` to log (NRF24 Debug)
This commit is contained in:
lumapu 2024-01-22 22:52:42 +01:00
parent 77b1f96c03
commit 66117e545b
4 changed files with 10 additions and 1 deletions

View file

@ -307,6 +307,7 @@ class HmRadio : public Radio {
p.len = (len > MAX_RF_PAYLOAD_SIZE) ? MAX_RF_PAYLOAD_SIZE : len;
p.rssi = mNrf24->testRPD() ? -64 : -75;
p.millis = millis() - mMillis;
p.arc = mNrf24->getARC();
mNrf24->read(p.packet, p.len);
if (p.packet[0] != 0x00) {