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

Merge branch 'master' into development

This commit is contained in:
borisbstyle 2016-10-17 11:09:03 +02:00
commit bfc5832149

View file

@ -1883,9 +1883,9 @@ static bool processInCommand(uint8_t cmdMSP)
currentProfile->pidProfile.dterm_notch_hz = read16();
currentProfile->pidProfile.dterm_notch_cutoff = read16();
}
if (dataSize > 13) {
serialize16(masterConfig.gyro_soft_notch_hz_2);
serialize16(masterConfig.gyro_soft_notch_cutoff_2);
if (currentPort->dataSize > 13) {
masterConfig.gyro_soft_notch_hz_2 = read16();
masterConfig.gyro_soft_notch_cutoff_2 = read16();
}
break;
case MSP_SET_PID_ADVANCED: