2012-03-03 00:49:38 -04:00
|
|
|
//
|
2012-03-11 05:00:39 -03:00
|
|
|
// Simple test for the AP_AHRS interface
|
2012-03-03 00:49:38 -04:00
|
|
|
//
|
|
|
|
|
2015-08-11 03:28:42 -03:00
|
|
|
#include <AP_ADC/AP_ADC.h>
|
|
|
|
#include <AP_AHRS/AP_AHRS.h>
|
2015-10-20 10:37:24 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2016-10-04 05:07:21 -03:00
|
|
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
2017-02-23 02:49:26 -04:00
|
|
|
#include <GCS_MAVLink/GCS.h>
|
2012-12-18 06:27:50 -04:00
|
|
|
|
2017-04-13 08:29:38 -03:00
|
|
|
void setup();
|
|
|
|
void loop();
|
|
|
|
|
2015-10-16 17:22:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
2012-03-03 00:49:38 -04:00
|
|
|
|
2014-02-14 03:34:22 -04:00
|
|
|
// INS and Baro declaration
|
2014-10-15 23:53:49 -03:00
|
|
|
AP_InertialSensor ins;
|
2014-11-27 19:40:52 -04:00
|
|
|
|
2015-03-16 08:21:35 -03:00
|
|
|
Compass compass;
|
2012-11-14 12:10:15 -04:00
|
|
|
|
2014-03-31 05:11:11 -03:00
|
|
|
AP_GPS gps;
|
2016-11-30 04:59:11 -04:00
|
|
|
AP_Baro barometer;
|
2015-02-03 02:56:54 -04:00
|
|
|
AP_SerialManager serial_manager;
|
2012-03-23 02:27:37 -03:00
|
|
|
|
2016-11-30 04:59:11 -04:00
|
|
|
class DummyVehicle {
|
|
|
|
public:
|
2017-02-09 08:02:47 -04:00
|
|
|
RangeFinder sonar {serial_manager, ROTATION_PITCH_270};
|
2016-12-10 03:16:19 -04:00
|
|
|
AP_AHRS_NavEKF ahrs{ins, barometer, gps, sonar, EKF2, EKF3,
|
2016-11-30 04:59:11 -04:00
|
|
|
AP_AHRS_NavEKF::FLAG_ALWAYS_USE_EKF};
|
|
|
|
NavEKF2 EKF2{&ahrs, barometer, sonar};
|
2016-12-10 03:16:19 -04:00
|
|
|
NavEKF3 EKF3{&ahrs, barometer, sonar};
|
2016-11-30 04:59:11 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static DummyVehicle vehicle;
|
2012-03-03 00:49:38 -04:00
|
|
|
|
2016-11-30 04:59:11 -04:00
|
|
|
// choose which AHRS system to use
|
|
|
|
// AP_AHRS_DCM ahrs(ins, baro, gps);
|
|
|
|
AP_AHRS_NavEKF ahrs(vehicle.ahrs);
|
2012-03-03 00:49:38 -04:00
|
|
|
|
|
|
|
void setup(void)
|
|
|
|
{
|
2016-10-04 05:07:21 -03:00
|
|
|
AP_BoardConfig{}.init();
|
|
|
|
|
2015-12-26 14:22:18 -04:00
|
|
|
ins.init(100);
|
2012-08-17 02:40:30 -03:00
|
|
|
ahrs.init();
|
2015-02-03 02:56:54 -04:00
|
|
|
serial_manager.init();
|
2012-07-28 02:27:26 -03:00
|
|
|
|
2012-08-17 02:40:30 -03:00
|
|
|
if( compass.init() ) {
|
2012-11-14 12:10:15 -04:00
|
|
|
hal.console->printf("Enabling compass\n");
|
2012-08-17 02:40:30 -03:00
|
|
|
ahrs.set_compass(&compass);
|
|
|
|
} else {
|
2012-11-14 12:10:15 -04:00
|
|
|
hal.console->printf("No compass detected\n");
|
2012-08-17 02:40:30 -03:00
|
|
|
}
|
2016-10-30 02:24:21 -03:00
|
|
|
gps.init(nullptr, serial_manager);
|
2012-03-03 00:49:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop(void)
|
|
|
|
{
|
2012-08-17 02:40:30 -03:00
|
|
|
static uint16_t counter;
|
|
|
|
static uint32_t last_t, last_print, last_compass;
|
2015-11-19 23:06:43 -04:00
|
|
|
uint32_t now = AP_HAL::micros();
|
2012-08-17 02:40:30 -03:00
|
|
|
float heading = 0;
|
|
|
|
|
|
|
|
if (last_t == 0) {
|
|
|
|
last_t = now;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
last_t = now;
|
|
|
|
|
2017-04-13 08:29:38 -03:00
|
|
|
if (now - last_compass > 100 * 1000UL &&
|
2012-08-17 02:40:30 -03:00
|
|
|
compass.read()) {
|
2015-12-10 18:05:13 -04:00
|
|
|
heading = compass.calculate_heading(ahrs.get_rotation_body_to_ned());
|
2012-08-17 02:40:30 -03:00
|
|
|
// read compass at 10Hz
|
|
|
|
last_compass = now;
|
|
|
|
}
|
|
|
|
|
|
|
|
ahrs.update();
|
|
|
|
counter++;
|
|
|
|
|
2012-11-14 12:10:15 -04:00
|
|
|
if (now - last_print >= 100000 /* 100ms : 10hz */) {
|
2012-08-17 02:40:30 -03:00
|
|
|
Vector3f drift = ahrs.get_gyro_drift();
|
2015-10-25 17:10:41 -03:00
|
|
|
hal.console->printf(
|
2015-10-24 18:45:41 -03:00
|
|
|
"r:%4.1f p:%4.1f y:%4.1f "
|
|
|
|
"drift=(%5.1f %5.1f %5.1f) hdg=%.1f rate=%.1f\n",
|
2017-04-13 08:29:38 -03:00
|
|
|
(double)ToDeg(ahrs.roll),
|
|
|
|
(double)ToDeg(ahrs.pitch),
|
|
|
|
(double)ToDeg(ahrs.yaw),
|
|
|
|
(double)ToDeg(drift.x),
|
|
|
|
(double)ToDeg(drift.y),
|
|
|
|
(double)ToDeg(drift.z),
|
|
|
|
(double)(compass.use_for_yaw() ? ToDeg(heading) : 0.0f),
|
|
|
|
(double)((1.0e6f * counter) / (now-last_print)));
|
2012-08-17 02:40:30 -03:00
|
|
|
last_print = now;
|
|
|
|
counter = 0;
|
|
|
|
}
|
2012-03-03 00:49:38 -04:00
|
|
|
}
|
2012-11-14 12:10:15 -04:00
|
|
|
|
2017-02-23 02:49:26 -04:00
|
|
|
GCS _gcs;
|
|
|
|
|
2012-11-14 12:10:15 -04:00
|
|
|
AP_HAL_MAIN();
|