pidUpdateCountdown set based on condition
This commit is contained in:
parent
1187c575ed
commit
21bc85335e
|
@ -741,6 +741,14 @@ void taskMotorUpdate(void) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint8_t setPidUpdateCountDown(void) {
|
||||||
|
if (masterConfig.gyro_soft_lpf_hz) {
|
||||||
|
return masterConfig.pid_process_denom - 1;
|
||||||
|
} else {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Check for oneshot125 protection. With fast looptimes oneshot125 pulse duration gets more near the pid looptime
|
// Check for oneshot125 protection. With fast looptimes oneshot125 pulse duration gets more near the pid looptime
|
||||||
bool shouldUpdateMotorsAfterPIDLoop(void) {
|
bool shouldUpdateMotorsAfterPIDLoop(void) {
|
||||||
if (targetPidLooptime > 375 ) {
|
if (targetPidLooptime > 375 ) {
|
||||||
|
@ -782,7 +790,7 @@ void taskMainPidLoopCheck(void) {
|
||||||
if (pidUpdateCountdown) {
|
if (pidUpdateCountdown) {
|
||||||
pidUpdateCountdown--;
|
pidUpdateCountdown--;
|
||||||
} else {
|
} else {
|
||||||
pidUpdateCountdown = masterConfig.pid_process_denom - 1;
|
pidUpdateCountdown = setPidUpdateCountDown();
|
||||||
taskMainPidLoop();
|
taskMainPidLoop();
|
||||||
if (shouldUpdateMotorsAfterPIDLoop()) taskMotorUpdate();
|
if (shouldUpdateMotorsAfterPIDLoop()) taskMotorUpdate();
|
||||||
runTaskMainSubprocesses = true;
|
runTaskMainSubprocesses = true;
|
||||||
|
|
Loading…
Reference in New Issue