ardupilot/libraries/AP_AHRS/examples/AHRS_Test/AHRS_Test.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

114 lines
3.1 KiB
C++
Raw Normal View History

//
// Simple test for the AP_AHRS interface
//
#include <AP_AHRS/AP_AHRS.h>
#include <AP_HAL/AP_HAL.h>
#include <AP_BoardConfig/AP_BoardConfig.h>
2017-03-10 22:45:55 -04:00
#include <GCS_MAVLink/GCS_Dummy.h>
2019-05-01 13:56:48 -03:00
#include <AP_RangeFinder/AP_RangeFinder.h>
2019-05-07 00:47:32 -03:00
#include <AP_Logger/AP_Logger.h>
#include <AP_GPS/AP_GPS.h>
2019-06-26 23:37:09 -03:00
#include <AP_Baro/AP_Baro.h>
2021-02-09 10:09:51 -04:00
#include <AP_ExternalAHRS/AP_ExternalAHRS.h>
#include <AP_Vehicle/AP_Vehicle.h>
void setup();
void loop();
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
static AP_SerialManager serial_manager;
2012-03-23 02:27:37 -03:00
2021-02-09 10:09:51 -04:00
class DummyVehicle : public AP_Vehicle {
2016-11-30 04:59:11 -04:00
public:
2021-07-20 10:04:20 -03:00
AP_AHRS ahrs{AP_AHRS::FLAG_ALWAYS_USE_EKF};
2021-02-09 10:09:51 -04:00
bool set_mode(const uint8_t new_mode, const ModeReason reason) override { return true; };
uint8_t get_mode() const override { return 1; };
void get_scheduler_tasks(const AP_Scheduler::Task *&tasks, uint8_t &task_count, uint32_t &log_bit) override {};
void init_ardupilot() override {};
void load_parameters() override {};
void init() {
BoardConfig.init();
ins.init(100);
ahrs.init();
}
AP_Int32 unused_log_bitmask;
struct LogStructure log_structure[1] = {
};
const AP_Int32 &get_log_bitmask() override { return unused_log_bitmask; }
2021-02-09 10:09:51 -04:00
const struct LogStructure *get_log_structures() const override {
return log_structure;
}
uint8_t get_num_log_structures() const override {
return 0;
}
2016-11-30 04:59:11 -04:00
};
static DummyVehicle vehicle;
2016-11-30 04:59:11 -04:00
// choose which AHRS system to use
2018-03-11 04:21:02 -03:00
// AP_AHRS_DCM ahrs = AP_AHRS_DCM::create(barometer, gps);
2021-07-20 10:04:20 -03:00
auto &ahrs = vehicle.ahrs;
void setup(void)
{
2021-02-09 10:09:51 -04:00
vehicle.init();
2015-02-03 02:56:54 -04:00
serial_manager.init();
2021-02-09 10:09:51 -04:00
AP::compass().init();
if (!AP::compass().read()) {
2012-11-14 12:10:15 -04:00
hal.console->printf("No compass detected\n");
}
2021-02-09 10:09:51 -04:00
AP::gps().init(serial_manager);
}
void loop(void)
{
static uint16_t counter;
static uint32_t last_t, last_print, last_compass;
uint32_t now = AP_HAL::micros();
float heading = 0;
if (last_t == 0) {
last_t = now;
return;
}
last_t = now;
if (now - last_compass > 100 * 1000UL &&
2021-02-09 10:09:51 -04:00
AP::compass().read()) {
heading = AP::compass().calculate_heading(ahrs.get_rotation_body_to_ned());
// 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 */) {
Vector3f drift = ahrs.get_gyro_drift();
hal.console->printf(
"r:%4.1f p:%4.1f y:%4.1f "
"drift=(%5.1f %5.1f %5.1f) hdg=%.1f rate=%.1f\n",
(double)ToDeg(ahrs.get_roll()),
(double)ToDeg(ahrs.get_pitch()),
(double)ToDeg(ahrs.get_yaw()),
(double)ToDeg(drift.x),
(double)ToDeg(drift.y),
(double)ToDeg(drift.z),
2021-02-09 10:09:51 -04:00
(double)(AP::compass().use_for_yaw() ? ToDeg(heading) : 0.0f),
(double)((1.0e6f * counter) / (now-last_print)));
last_print = now;
counter = 0;
}
}
2012-11-14 12:10:15 -04:00
const struct AP_Param::GroupInfo GCS_MAVLINK_Parameters::var_info[] = {
2017-03-10 22:45:55 -04:00
AP_GROUPEND
};
GCS_Dummy _gcs;
2012-11-14 12:10:15 -04:00
AP_HAL_MAIN();