Skip to content

Commit

Permalink
Wait an extra slot when sending custom telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
pmattila committed Nov 3, 2024
1 parent 2eb9030 commit 8be8e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/telemetry/crsf.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ bool checkCrsfTelemetryState(void)
static inline size_t crsfLinkFrameSlots(size_t bytes)
{
// Telemetry data is send in 5 byte slots, with 1 slot overhead
return (bytes + 9) / 5;
return (bytes + 14) / 5;
}

static inline void crsfTelemetryRateConsume(size_t slots)
Expand Down

0 comments on commit 8be8e7f

Please sign in to comment.