mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
added ifdef guard
This commit is contained in:
parent
772c1bf981
commit
f153a7cb44
@ -40,8 +40,10 @@
|
||||
*/
|
||||
|
||||
#include "ekf.h"
|
||||
#ifdef __PX4_POSIX
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#endif
|
||||
#include <iomanip>
|
||||
#include <mathlib/mathlib.h>
|
||||
|
||||
@ -79,6 +81,7 @@ void Ekf::resetPosition()
|
||||
_state.pos(2) = baro_newest.hgt;
|
||||
}
|
||||
|
||||
#ifdef __PX4_POSIX
|
||||
void Ekf::printCovToFile(char const *filename)
|
||||
{
|
||||
std::ofstream myfile;
|
||||
@ -94,6 +97,7 @@ void Ekf::printCovToFile(char const *filename)
|
||||
myfile << "\n\n\n\n\n\n\n\n\n\n";
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// This checks if the diagonal of the covariance matrix is non-negative
|
||||
// and that the matrix is symmetric
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user