mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 04:45:24 +03:00
Fixed missing spaces after 'if'.
This commit is contained in:
parent
6497830a1b
commit
ab025b76a8
10 changed files with 11 additions and 11 deletions
|
@ -1444,7 +1444,7 @@ void FAST_CODE pidController(const pidProfile_t *pidProfile, timeUs_t currentTim
|
|||
|
||||
// -----calculate D component
|
||||
// disable D if launch control is active
|
||||
if ((pidCoefficient[axis].Kd > 0) && !launchControlActive){
|
||||
if ((pidCoefficient[axis].Kd > 0) && !launchControlActive) {
|
||||
|
||||
// Divide rate change by dT to get differential (ie dr/dt).
|
||||
// dT is fixed and calculated from the target PID loop time
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue