2016-07-07 05:26:11 -03:00
|
|
|
//
|
|
|
|
// Simple test for the AP_AHRS interface
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <AP_AHRS/AP_AHRS.h>
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_Module/AP_Module.h>
|
|
|
|
|
2017-04-13 08:32:02 -03:00
|
|
|
void setup();
|
|
|
|
void loop();
|
|
|
|
|
2016-07-07 05:26:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
|
|
|
|
|
|
|
// sensor declaration
|
2017-12-12 21:06:13 -04:00
|
|
|
static AP_InertialSensor ins;
|
|
|
|
static AP_GPS gps;
|
|
|
|
static AP_Baro baro;
|
|
|
|
static AP_SerialManager serial_manager;
|
2016-07-07 05:26:11 -03:00
|
|
|
|
|
|
|
// choose which AHRS system to use
|
2018-03-11 04:21:02 -03:00
|
|
|
static AP_AHRS_DCM ahrs{};
|
2016-07-07 05:26:11 -03:00
|
|
|
|
|
|
|
void setup(void)
|
|
|
|
{
|
|
|
|
serial_manager.init();
|
|
|
|
ins.init(100);
|
|
|
|
baro.init();
|
|
|
|
ahrs.init();
|
|
|
|
|
2017-06-28 07:37:01 -03:00
|
|
|
gps.init(serial_manager);
|
2016-07-07 05:26:11 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop(void)
|
|
|
|
{
|
|
|
|
ahrs.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|