1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 14:25:20 +03:00

slow change althold now controls velocity directly

The throttle stick input now directly sets the vertical velocity
setpoint of the copter. (alt_hold_fast_change = 0)

Conflicts:

	src/imu.c
	src/mw.c
	src/mw.h
This commit is contained in:
luggi 2014-07-16 18:20:09 -04:00 committed by Dominic Clifton
parent ff82839f89
commit 7917e44293
3 changed files with 24 additions and 19 deletions

View file

@ -17,7 +17,9 @@
#pragma once
extern int32_t errorAltitudeI;
extern int32_t errorVelocityI;
extern uint8_t velocityControl;
extern int32_t setVelocity;
extern int32_t BaroPID;
extern int16_t throttleAngleCorrection;