mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-03 04:15:53 +00:00
Fix another LOG_DEBUG message that should be LOG_ERROR (#3607)
This commit is contained in:
parent
11adfe05ce
commit
3f45c2d4f0
@ -319,7 +319,7 @@ void RadioLibInterface::handleReceiveInterrupt()
|
|||||||
// when this is called, we should be in receive mode - if we are not, just jump out instead of bombing. Possible Race
|
// when this is called, we should be in receive mode - if we are not, just jump out instead of bombing. Possible Race
|
||||||
// Condition?
|
// Condition?
|
||||||
if (!isReceiving) {
|
if (!isReceiving) {
|
||||||
LOG_DEBUG("*** WAS_ASSERT *** handleReceiveInterrupt called when not in receive mode\n");
|
LOG_ERROR("handleReceiveInterrupt called when not in receive mode, which shouldn't happen.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -414,4 +414,4 @@ void RadioLibInterface::startSend(meshtastic_MeshPacket *txp)
|
|||||||
// bits
|
// bits
|
||||||
enableInterrupt(isrTxLevel0);
|
enableInterrupt(isrTxLevel0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user