Revert "EKF: Release flow speed limit with altitude gained" (#382)

* Revert "EKF: Release flow speed limit with altitude gained"

This reverts commit e70206f74b.

* Revert "fix code style"

This reverts commit 76bf70121c.

* Revert "Reverse the linked list of data_validator_group and maintain a first node"

This reverts commit 32482e7644.
This commit is contained in:
Paul Riseborough
2018-01-24 20:46:48 +11:00
committed by GitHub
parent 76bf70121c
commit f016e66ff8
6 changed files with 18 additions and 43 deletions
+2 -2
View File
@@ -42,7 +42,7 @@
#include "data_validator.h"
#include <ecl/ecl.h>
DataValidator::DataValidator() :
DataValidator::DataValidator(DataValidator *prev_sibling) :
_error_mask(ERROR_FLAG_NO_ERROR),
_timeout_interval(20000),
_time_last(0),
@@ -58,7 +58,7 @@ DataValidator::DataValidator() :
_vibe{0.0f},
_value_equal_count(0),
_value_equal_count_threshold(VALUE_EQUAL_COUNT_DEFAULT),
_sibling(nullptr)
_sibling(prev_sibling)
{
}