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>
|
2019-06-13 23:57:54 -03:00
|
|
|
#include <AP_GPS/AP_GPS.h>
|
2019-06-27 00:43:17 -03:00
|
|
|
#include <AP_Baro/AP_Baro.h>
|
2021-02-09 08:56:23 -04:00
|
|
|
#include <AP_ExternalAHRS/AP_ExternalAHRS.h>
|
2022-08-18 21:40:56 -03:00
|
|
|
#include <GCS_MAVLink/GCS_Dummy.h>
|
|
|
|
|
|
|
|
const struct AP_Param::GroupInfo GCS_MAVLINK_Parameters::var_info[] = {
|
|
|
|
AP_GROUPEND
|
|
|
|
};
|
|
|
|
GCS_Dummy _gcs;
|
2016-07-07 05:26:11 -03:00
|
|
|
|
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;
|
2021-02-09 08:56:23 -04:00
|
|
|
#if HAL_EXTERNAL_AHRS_ENABLED
|
2021-02-09 10:09:51 -04:00
|
|
|
static AP_ExternalAHRS eAHRS;
|
2021-02-09 08:56:23 -04:00
|
|
|
#endif // HAL_EXTERNAL_AHRS_ENABLED
|
2017-12-12 21:06:13 -04:00
|
|
|
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
|
2021-07-23 09:06:59 -03:00
|
|
|
static AP_AHRS ahrs{};
|
2016-07-07 05:26:11 -03:00
|
|
|
|
|
|
|
void setup(void)
|
|
|
|
{
|
|
|
|
serial_manager.init();
|
|
|
|
ins.init(100);
|
|
|
|
baro.init();
|
|
|
|
ahrs.init();
|
|
|
|
|
2024-03-17 19:08:46 -03:00
|
|
|
gps.init();
|
2016-07-07 05:26:11 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop(void)
|
|
|
|
{
|
|
|
|
ahrs.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
AP_HAL_MAIN();
|