1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

Merge pull request #7083 from McGiverGim/fix_throttle_max_msp_gps_rescue

Remove duplicated throttle max in MSP_GPS_RESCUE
This commit is contained in:
Michael Keller 2018-11-23 20:25:37 +13:00 committed by GitHub
commit b418824f87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1050,7 +1050,6 @@ static bool mspProcessOutCommand(uint8_t cmdMSP, sbuf_t *dst)
sbufWriteU16(dst, gpsRescueConfig()->throttleMin);
sbufWriteU16(dst, gpsRescueConfig()->throttleMax);
sbufWriteU16(dst, gpsRescueConfig()->throttleHover);
sbufWriteU16(dst, gpsRescueConfig()->throttleMax);
sbufWriteU8(dst, gpsRescueConfig()->sanityChecks);
sbufWriteU8(dst, gpsRescueConfig()->minSats);
break;