ardupilot/libraries/AP_Compass/AP_Compass_HIL.cpp

62 lines
1.5 KiB
C++
Raw Normal View History

2013-05-02 08:31:17 -03:00
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* AP_Compass_HIL.cpp - HIL backend for AP_Compass
*
*/
2012-10-11 17:48:39 -03:00
#include <AP_HAL.h>
#include "AP_Compass_HIL.h"
2012-10-11 17:48:39 -03:00
extern const AP_HAL::HAL& hal;
// constructor
AP_Compass_HIL::AP_Compass_HIL(Compass &compass):
AP_Compass_Backend(compass),
_compass_instance(0)
{
_compass._setup_earth_field();
}
// detect the sensor
AP_Compass_Backend *AP_Compass_HIL::detect(Compass &compass)
{
AP_Compass_HIL *sensor = new AP_Compass_HIL(compass);
if (sensor == NULL) {
return NULL;
}
if (!sensor->init()) {
delete sensor;
return NULL;
}
return sensor;
}
bool
AP_Compass_HIL::init(void)
{
// register the compass instance in the frontend
_compass_instance = register_compass();
return true;
2014-05-12 06:44:15 -03:00
}
void AP_Compass_HIL::read()
{
publish_field(_compass._hil.field, _compass_instance);
}