Skip to content

Commit

Permalink
Issue #973. Fix typo when setting sLastLqi. (#981)
Browse files Browse the repository at this point in the history
  • Loading branch information
romacdon authored Sep 27, 2024
1 parent de50c79 commit a7eba69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/src/radio.c
Original file line number Diff line number Diff line change
Expand Up @@ -3238,7 +3238,7 @@ static rxBuffer *prepareNextRxPacketforCb(void)
sLastRssi = rxPacketBuf->packetInfo.rssi;

sReceive.frame.mInfo.mRxInfo.mLqi = rxPacketBuf->packetInfo.lqi;
sLastLqi = rxPacketBuf->packetInfo.rssi;
sLastLqi = rxPacketBuf->packetInfo.lqi;

sReceive.iid = rxPacketBuf->packetInfo.iid;

Expand Down

0 comments on commit a7eba69

Please sign in to comment.