1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

fixed bug in soft_i2c driver (doesnt affect anyone except testing)

added VAR_FLOAT to cli - now allows setting/printing float vars
fixed newlines in pwm driver
exported new althold tunables to cli (some are floats) - still not enabled by default until I know it works

git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@219 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
timecop@gmail.com 2012-09-18 13:29:35 +00:00
parent f3ce558871
commit 817eb09b8a
6 changed files with 2955 additions and 2923 deletions

View file

@ -493,7 +493,7 @@ bool pwmInit(drv_pwm_config_t *init)
if (init->extraServos) {
// remap PWM5..8 as servos when used in extended servo mode
if (port >= PWM5 && port <= PWM8)
if (port >= PWM5 && port <= PWM8)
mask = TYPE_S;
}