mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-26 17:55:28 +03:00
MSP: Fix for incorrect length for MSP_GPSSTATISTICS message
This commit is contained in:
parent
8472a31f83
commit
0eb7139f78
1 changed files with 1 additions and 1 deletions
|
@ -1163,7 +1163,7 @@ static bool processOutCommand(uint8_t cmdMSP)
|
||||||
serialize8(gpsSol.hdop / 100);
|
serialize8(gpsSol.hdop / 100);
|
||||||
break;
|
break;
|
||||||
case MSP_GPSSTATISTICS:
|
case MSP_GPSSTATISTICS:
|
||||||
headSerialReply(32);
|
headSerialReply(20);
|
||||||
serialize16(gpsStats.lastMessageDt);
|
serialize16(gpsStats.lastMessageDt);
|
||||||
serialize32(gpsStats.errors);
|
serialize32(gpsStats.errors);
|
||||||
serialize32(gpsStats.timeouts);
|
serialize32(gpsStats.timeouts);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue