mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: Rename LORD to MicroStrain
Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
This commit is contained in:
parent
7c2baa75d9
commit
109c894929
|
@ -232,8 +232,8 @@ void SIMState::fdm_input_local(void)
|
|||
vectornav->update();
|
||||
}
|
||||
|
||||
if (lord != nullptr) {
|
||||
lord->update();
|
||||
if (microstrain != nullptr) {
|
||||
microstrain->update();
|
||||
}
|
||||
|
||||
#if HAL_SIM_AIS_ENABLED
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <SITL/SIM_RF_MAVLink.h>
|
||||
#include <SITL/SIM_RF_GYUS42v2.h>
|
||||
#include <SITL/SIM_VectorNav.h>
|
||||
#include <SITL/SIM_LORD.h>
|
||||
#include <SITL/SIM_MicroStrain.h>
|
||||
#include <SITL/SIM_AIS.h>
|
||||
#include <SITL/SIM_GPS.h>
|
||||
|
||||
|
@ -190,8 +190,8 @@ private:
|
|||
// simulated VectorNav system:
|
||||
SITL::VectorNav *vectornav;
|
||||
|
||||
// simulated LORD Microstrain system
|
||||
SITL::LORD *lord;
|
||||
// simulated LORD MicroStrain system
|
||||
SITL::MicroStrain *microstrain;
|
||||
|
||||
#if HAL_SIM_JSON_MASTER_ENABLED
|
||||
// Ride along instances via JSON SITL backend
|
||||
|
|
Loading…
Reference in New Issue