1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

rescueYaw should be signed

This commit is contained in:
Diego Basch 2018-06-22 16:56:38 -07:00
parent 713e72321b
commit 1f738f5aa4

View file

@ -72,7 +72,7 @@ PG_RESET_TEMPLATE(gpsRescueConfig_t, gpsRescueConfig,
);
static uint16_t rescueThrottle;
static uint16_t rescueYaw;
static int16_t rescueYaw;
int32_t gpsRescueAngle[ANGLE_INDEX_COUNT] = { 0, 0 };
uint16_t hoverThrottle = 0;