Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions Firmware/LoRaSerial/States.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1411,10 +1411,6 @@ void updateRadioState()
changeState(RADIO_MP_WAIT_TX_DONE);
}
}
else
{
changeState(RADIO_MP_STANDBY);
}
break;

case DATAGRAM_HEARTBEAT:
Expand All @@ -1432,7 +1428,6 @@ void updateRadioState()
lastPacketReceived = millis(); //Update timestamp for Link LED

blinkHeartbeatLed(true);
changeState(RADIO_MP_STANDBY);
}
break;

Expand All @@ -1446,8 +1441,6 @@ void updateRadioState()
frequencyCorrection += radio.getFrequencyError() / 1000000.0;

lastPacketReceived = millis(); //Update timestamp for Link LED

changeState(RADIO_MP_STANDBY);
break;
}
}
Expand Down