add comment: // Added in API version 1.44

This commit is contained in:
dev-fred 2020-07-30 11:18:31 +02:00 committed by GitHub
parent a09210dcd4
commit 2623560185
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1371,7 +1371,7 @@ static bool mspProcessOutCommand(int16_t cmdMSP, sbuf_t *dst)
sbufWriteU16(dst, (uint16_t)constrain(gpsSol.llh.altCm / 100, 0, UINT16_MAX)); // alt changed from 1m to 0.01m per lsb since MSP API 1.39 by RTH. To maintain backwards compatibility compensate to 1m per lsb in MSP again.
sbufWriteU16(dst, gpsSol.groundSpeed);
sbufWriteU16(dst, gpsSol.groundCourse);
sbufWriteU16(dst, gpsSol.hdop);
sbufWriteU16(dst, gpsSol.hdop); // Added in API version 1.44
break;
case MSP_COMP_GPS: