aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@student.ethz.ch>2013-10-31 14:20:30 +0100
committerThomas Gubler <thomasgubler@student.ethz.ch>2013-10-31 14:20:30 +0100
commitc0100b5e17b87b1c721a115bdbe535ab606bd58e (patch)
treefd36974bf418c96f1631f149f028f67db0894081 /src/lib
parent2e9a383390f1d6456f7258676024ad06ff5af1c6 (diff)
downloadpx4-firmware-c0100b5e17b87b1c721a115bdbe535ab606bd58e.tar.gz
px4-firmware-c0100b5e17b87b1c721a115bdbe535ab606bd58e.tar.bz2
px4-firmware-c0100b5e17b87b1c721a115bdbe535ab606bd58e.zip
heightrate p as parameter
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/external_lgpl/tecs/tecs.cpp2
-rw-r--r--src/lib/external_lgpl/tecs/tecs.h5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/external_lgpl/tecs/tecs.cpp b/src/lib/external_lgpl/tecs/tecs.cpp
index 5cbc19dbb..a94a06dda 100644
--- a/src/lib/external_lgpl/tecs/tecs.cpp
+++ b/src/lib/external_lgpl/tecs/tecs.cpp
@@ -231,7 +231,7 @@ void TECS::_update_height_demand(float demand, float state)
_hgt_dem_adj = demand;//0.025f * demand + 0.975f * _hgt_dem_adj_last;
_hgt_dem_adj_last = _hgt_dem_adj;
- _hgt_rate_dem = (_hgt_dem_adj-state)*0.1f; //xxx: parameter
+ _hgt_rate_dem = (_hgt_dem_adj-state)*_heightrate_p;
// Limit height rate of change
if (_hgt_rate_dem > _maxClimbRate) {
_hgt_rate_dem = _maxClimbRate;
diff --git a/src/lib/external_lgpl/tecs/tecs.h b/src/lib/external_lgpl/tecs/tecs.h
index 224f35366..d07bd00dd 100644
--- a/src/lib/external_lgpl/tecs/tecs.h
+++ b/src/lib/external_lgpl/tecs/tecs.h
@@ -178,6 +178,10 @@ public:
_indicated_airspeed_max = airspeed;
}
+ void set_heightrate_p(float heightrate_p) {
+ _heightrate_p = heightrate_p;
+ }
+
private:
// Last time update_50Hz was called
uint64_t _update_50hz_last_usec;
@@ -201,6 +205,7 @@ private:
float _vertAccLim;
float _rollComp;
float _spdWeight;
+ float _heightrate_p;
// throttle demand in the range from 0.0 to 1.0
float _throttle_dem;