mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
MSP hack when gyro_lpf != 0
This commit is contained in:
parent
05512f6ec3
commit
47c7409ec4
1 changed files with 8 additions and 3 deletions
|
@ -1239,9 +1239,14 @@ static bool processOutCommand(uint8_t cmdMSP)
|
|||
break;
|
||||
case MSP_ADVANCED_CONFIG :
|
||||
headSerialReply(6);
|
||||
serialize8(masterConfig.gyro_sync_denom);
|
||||
serialize8(masterConfig.pid_process_denom);
|
||||
serialize8(masterConfig.use_unsyncedPwm);
|
||||
if (masterConfig.gyro_lpf == 0) {
|
||||
serialize8(masterConfig.gyro_sync_denom);
|
||||
serialize8(masterConfig.pid_process_denom);
|
||||
} else {
|
||||
serialize8(8); // If gyro_lpf != OFF then looptime is set to 1000
|
||||
serialize8(1);
|
||||
}
|
||||
serialize8(masterConfig.use_unsyncedPwm);
|
||||
serialize8(masterConfig.motor_pwm_protocol);
|
||||
serialize16(masterConfig.motor_pwm_rate);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue