mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 19:40:31 +03:00
allow 0 for looptime to go back to not-rate-limited loop.
git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@183 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
parent
c98113b82c
commit
75adda0597
4 changed files with 2372 additions and 2372 deletions
|
@ -142,7 +142,7 @@ const clivalue_t valueTable[] = {
|
|||
{ "nav_speed_min", VAR_UINT16, &cfg.nav_speed_min, 10, 2000 },
|
||||
{ "nav_speed_max", VAR_UINT16, &cfg.nav_speed_max, 10, 2000 },
|
||||
{ "nav_slew_rate", VAR_UINT8, &cfg.nav_slew_rate, 0, 100 },
|
||||
{ "looptime", VAR_UINT16, &cfg.looptime, 1500, 9000 },
|
||||
{ "looptime", VAR_UINT16, &cfg.looptime, 0, 9000 },
|
||||
{ "p_pitch", VAR_UINT8, &cfg.P8[PITCH], 0, 200 },
|
||||
{ "i_pitch", VAR_UINT8, &cfg.I8[PITCH], 0, 200 },
|
||||
{ "d_pitch", VAR_UINT8, &cfg.D8[PITCH], 0, 200 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue