mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
42b8ee78cf
don't need to know the details, just that it is a class
17 lines
262 B
C++
17 lines
262 B
C++
#pragma once
|
|
|
|
/*
|
|
compass learning using magnetic field tables from AP_Declination and GSF
|
|
*/
|
|
|
|
class CompassLearn {
|
|
public:
|
|
CompassLearn(class Compass &compass);
|
|
|
|
// called on each compass read
|
|
void update(void);
|
|
|
|
private:
|
|
Compass &compass;
|
|
};
|