aboutsummaryrefslogtreecommitdiff
path: root/src/modules/ekf_att_pos_estimator/estimator_22states.h
diff options
context:
space:
mode:
authorJohan Jansen <jnsn.johan@gmail.com>2015-03-13 15:59:01 +0100
committerJohan Jansen <jnsn.johan@gmail.com>2015-03-13 15:59:01 +0100
commit85082875906ffca937dbaaf3839188b17abd951e (patch)
treef0f9e28522a96e10f3ebc87c341400683f0f4477 /src/modules/ekf_att_pos_estimator/estimator_22states.h
parent4a8f799e9e0c862018360db808793e77759a5336 (diff)
downloadpx4-firmware-85082875906ffca937dbaaf3839188b17abd951e.tar.gz
px4-firmware-85082875906ffca937dbaaf3839188b17abd951e.tar.bz2
px4-firmware-85082875906ffca937dbaaf3839188b17abd951e.zip
AttPosEKF: Remove unused code
Diffstat (limited to 'src/modules/ekf_att_pos_estimator/estimator_22states.h')
-rw-r--r--src/modules/ekf_att_pos_estimator/estimator_22states.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/modules/ekf_att_pos_estimator/estimator_22states.h b/src/modules/ekf_att_pos_estimator/estimator_22states.h
index 6d3076da7..9b23f4df4 100644
--- a/src/modules/ekf_att_pos_estimator/estimator_22states.h
+++ b/src/modules/ekf_att_pos_estimator/estimator_22states.h
@@ -288,7 +288,6 @@ public:
* Recall the state vector.
*
* Recalls the vector stored at closest time to the one specified by msec
- *FuseOptFlow
* @return zero on success, integer indicating the number of invalid states on failure.
* Does only copy valid states, if the statesForFusion vector was initialized
* correctly by the caller, the result can be safely used, but is a mixture
@@ -307,12 +306,6 @@ public:
static void quat2eul(float (&eul)[3], const float (&quat)[4]);
- static void calcvelNED(float (&velNED)[3], float gpsCourse, float gpsGndSpd, float gpsVelD);
-
- static void calcposNED(float (&posNED)[3], double lat, double lon, float hgt, double latRef, double lonRef, float hgtRef);
-
- static void calcLLH(float posNED[3], double &lat, double &lon, float &hgt, double latRef, double lonRef, float hgtRef);
-
//static void quat2Tnb(Mat3f &Tnb, const float (&quat)[4]);
static inline float sq(float valIn) {return valIn * valIn;}