disable activelyReceiving for sx1262 for now - it doesn't yet work

This commit is contained in:
geeksville
2020-05-24 16:34:18 -07:00
parent 66b11bcbd7
commit 48de631e04
3 changed files with 6 additions and 2 deletions

View File

@@ -104,7 +104,9 @@ void SX1262Interface::startReceive()
/** Could we send right now (i.e. either not actively receving or transmitting)? */
bool SX1262Interface::isActivelyReceiving()
{
return lora.getPacketLength() > 0;
return false; // FIXME
// FIXME this is not correct - often always true - need to add an extra conditional
// return lora.getPacketLength() > 0;
}
bool SX1262Interface::sleep()