fix(kiss_modem): improve RX delivery and noise floor sampling

This commit is contained in:
agessaman
2026-02-06 16:31:20 -08:00
committed by ViezeVingertjes
parent 1af013c741
commit f445b5acdc
3 changed files with 29 additions and 10 deletions

View File

@@ -197,4 +197,6 @@ public:
void onPacketReceived(int8_t snr, int8_t rssi, const uint8_t* packet, uint16_t len);
bool isTxBusy() const { return _tx_state != TX_IDLE; }
/** True only when radio is actually transmitting; use to skip recvRaw in main loop. */
bool isActuallyTransmitting() const { return _tx_state == TX_SENDING; }
};