You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
286 B

#pragma once
#include <AP_AHRS/AP_AHRS.h>
/*
compass learning using magnetic field tables from AP_Declination and GSF
*/
class CompassLearn {
public:
CompassLearn(Compass &compass);
// called on each compass read
void update(void);
private:
Compass &compass;
};