Skip to content

Commit

Permalink
set CRSF/ELRS SNR to uplink_SNR rather than downlink_SNR (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdCopter authored Jul 26, 2022
1 parent c6e12dc commit 448ff92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/rx/crsf.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ static void handleCrsfLinkStatisticsFrame(const crsfLinkStatistics_t* statsPtr,
const crsfLinkStatistics_t stats = *statsPtr;
CRSFsetLQ(stats.uplink_Link_quality);
CRSFsetRFMode(stats.rf_Mode);
CRSFsetSnR(stats.downlink_SNR);
CRSFsetSnR(stats.uplink_SNR);
CRSFsetTXPower(stats.uplink_TX_Power);
if (stats.uplink_RSSI_1 == 0) {
CRSFsetRSSI(stats.uplink_RSSI_2);
Expand Down

0 comments on commit 448ff92

Please sign in to comment.