mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-26 01:35:35 +03:00
Fix outputted GPS altitude
This commit is contained in:
parent
80380c6b59
commit
8d980b2a56
6 changed files with 7 additions and 7 deletions
|
@ -1104,7 +1104,7 @@ static bool processOutCommand(uint8_t cmdMSP)
|
|||
serialize8(gpsSol.numSat);
|
||||
serialize32(gpsSol.llh.lat);
|
||||
serialize32(gpsSol.llh.lon);
|
||||
serialize16(gpsSol.llh.alt);
|
||||
serialize16(gpsSol.llh.alt/100); // meters
|
||||
serialize16(gpsSol.groundSpeed);
|
||||
serialize16(gpsSol.groundCourse);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue