Skip to content

Commit

Permalink
fix(mlink): sometimes need > 1s timeout for MLink telem (#5119)
Browse files Browse the repository at this point in the history
  • Loading branch information
mha1 authored Jun 4, 2024
1 parent 6d5ea22 commit ed4a4a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radio/src/telemetry/mlink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ void processMLinkPacket(const uint8_t * packet, bool multi)
setTelemetryValue(PROTOCOL_TELEMETRY_MLINK, MLINK_LQI, 0, address, mlinkLQI, UNIT_RAW, 0);
telemetryData.rssi.set(mlinkLQI);
if (mlinkLQI > 0) {
telemetryStreaming = TELEMETRY_TIMEOUT10ms;
telemetryStreaming = 2*TELEMETRY_TIMEOUT10ms;
}
break;
}
Expand Down

0 comments on commit ed4a4a2

Please sign in to comment.