Replaced wigen with custom matrix lib.

This commit is contained in:
jgoppert
2015-10-24 15:06:59 -04:00
parent 0106be3e89
commit 6cce823dc6
8 changed files with 26 additions and 31 deletions
+2 -2
View File
@@ -123,7 +123,7 @@ int blockLimitSymTest()
float BlockLowPass::update(float input)
{
if (!isfinite(getState())) {
if (!PX4_ISFINITE(getState())) {
setState(input);
}
@@ -203,7 +203,7 @@ int blockHighPassTest()
float BlockLowPass2::update(float input)
{
if (!isfinite(getState())) {
if (!PX4_ISFINITE(getState())) {
setState(input);
}