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

anti desync depricated // Replaced by motor_accel_limit

This commit is contained in:
borisbstyle 2016-07-17 21:35:04 +02:00
parent 2d6e0da773
commit 9c50ed8769
5 changed files with 29 additions and 19 deletions

View file

@ -1226,7 +1226,7 @@ static bool processOutCommand(uint8_t cmdMSP)
serialize8(currentControlRateProfile->rcYawRate8);
serialize16(masterConfig.rxConfig.airModeActivateThreshold);
serialize8(masterConfig.rxConfig.rcSmoothInterval);
serialize16(masterConfig.escAndServoConfig.escDesyncProtection);
serialize16(masterConfig.escAndServoConfig.accelerationLimitPercent);
break;
case MSP_SENSOR_CONFIG:
headSerialReply(3);
@ -1801,7 +1801,7 @@ static bool processInCommand(void)
currentControlRateProfile->rcYawRate8 = read8();
masterConfig.rxConfig.airModeActivateThreshold = read16();
masterConfig.rxConfig.rcSmoothInterval = read8();
masterConfig.escAndServoConfig.escDesyncProtection = read16();
masterConfig.escAndServoConfig.accelerationLimitPercent = read16();
break;
case MSP_SET_SENSOR_CONFIG:
masterConfig.acc_hardware = read8();