Test external vision

This commit is contained in:
kamilritz
2019-12-18 11:42:12 +01:00
committed by Mathieu Bresciani
parent 84dcb32bd8
commit 1b0e137b8a
10 changed files with 388 additions and 10 deletions
+5 -1
View File
@@ -50,6 +50,7 @@
#include "gps.h"
#include "flow.h"
#include "range_finder.h"
#include "vio.h"
#include "EKF/ekf.h"
using namespace sensor_simulator::sensor;
@@ -82,6 +83,9 @@ public:
void startRangeFinder(){ _rng.start(); }
void stopRangeFinder(){ _rng.stop(); }
void startExternalVision(){ _vio.start(); }
void stopExternalVision(){ _vio.stop(); }
void setImuBias(Vector3f accel_bias, Vector3f gyro_bias);
void simulateOrientation(Quatf orientation);
@@ -91,5 +95,5 @@ public:
Gps _gps;
Flow _flow;
RangeFinder _rng;
Vio _vio;
};