AP_HAL: added InertialLabs simulator
This commit is contained in:
parent
a17438d52c
commit
48ab76d06e
@ -230,6 +230,9 @@ void SIMState::fdm_input_local(void)
|
||||
if (microstrain5 != nullptr) {
|
||||
microstrain5->update();
|
||||
}
|
||||
if (inertiallabs != nullptr) {
|
||||
inertiallabs->update();
|
||||
}
|
||||
|
||||
#if HAL_SIM_AIS_ENABLED
|
||||
if (ais != nullptr) {
|
||||
|
@ -30,6 +30,7 @@
|
||||
#include <SITL/SIM_RF_GYUS42v2.h>
|
||||
#include <SITL/SIM_VectorNav.h>
|
||||
#include <SITL/SIM_MicroStrain.h>
|
||||
#include <SITL/SIM_InertialLabs.h>
|
||||
#include <SITL/SIM_AIS.h>
|
||||
#include <SITL/SIM_GPS.h>
|
||||
|
||||
@ -198,6 +199,9 @@ private:
|
||||
// simulated MicroStrain Series 7 system
|
||||
SITL::MicroStrain7 *microstrain7;
|
||||
|
||||
// simulated InertialLabs INS-U
|
||||
SITL::InertialLabs *inertiallabs;
|
||||
|
||||
#if HAL_SIM_JSON_MASTER_ENABLED
|
||||
// Ride along instances via JSON SITL backend
|
||||
SITL::JSON_Master ride_along;
|
||||
|
Loading…
Reference in New Issue
Block a user