2011-12-28 05:31:36 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-02-14 00:27:07 -04:00
|
|
|
#ifndef Compass_h
|
|
|
|
#define Compass_h
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2011-04-30 23:05:17 -03:00
|
|
|
#include "../AP_Common/AP_Common.h"
|
|
|
|
#include "../AP_Math/AP_Math.h"
|
2012-03-10 19:19:04 -04:00
|
|
|
#include "../AP_Declination/AP_Declination.h" // ArduPilot Mega Declination Helper Library
|
2011-02-14 00:27:07 -04:00
|
|
|
|
2011-06-28 13:30:42 -03:00
|
|
|
// compass product id
|
|
|
|
#define AP_COMPASS_TYPE_UNKNOWN 0x00
|
|
|
|
#define AP_COMPASS_TYPE_HIL 0x01
|
|
|
|
#define AP_COMPASS_TYPE_HMC5843 0x02
|
|
|
|
#define AP_COMPASS_TYPE_HMC5883L 0x03
|
|
|
|
|
2011-02-14 00:27:07 -04:00
|
|
|
class Compass
|
|
|
|
{
|
|
|
|
public:
|
2012-08-21 23:19:51 -03:00
|
|
|
int16_t product_id; /// product id
|
|
|
|
int16_t mag_x; ///< magnetic field strength along the X axis
|
|
|
|
int16_t mag_y; ///< magnetic field strength along the Y axis
|
|
|
|
int16_t mag_z; ///< magnetic field strength along the Z axis
|
|
|
|
uint32_t last_update; ///< micros() time of last update
|
|
|
|
bool healthy; ///< true if last read OK
|
|
|
|
|
|
|
|
/// Constructor
|
|
|
|
///
|
|
|
|
Compass();
|
|
|
|
|
|
|
|
/// Initialize the compass device.
|
|
|
|
///
|
|
|
|
/// @returns True if the compass was initialized OK, false if it was not
|
|
|
|
/// found or is not functioning.
|
|
|
|
///
|
|
|
|
virtual bool init();
|
|
|
|
|
|
|
|
/// Read the compass and update the mag_ variables.
|
|
|
|
///
|
|
|
|
virtual bool read(void) = 0;
|
|
|
|
|
2012-08-26 00:42:00 -03:00
|
|
|
/// use spare CPU cycles to accumulate values from the compass if
|
|
|
|
/// possible
|
|
|
|
virtual void accumulate(void) = 0;
|
|
|
|
|
2012-08-21 23:19:51 -03:00
|
|
|
/// Calculate the tilt-compensated heading_ variables.
|
|
|
|
///
|
|
|
|
/// @param roll The current airframe roll angle.
|
|
|
|
/// @param pitch The current airframe pitch angle.
|
|
|
|
///
|
2012-06-20 06:30:30 -03:00
|
|
|
/// @returns heading in radians
|
|
|
|
///
|
2012-08-21 23:19:51 -03:00
|
|
|
virtual float calculate_heading(float roll, float pitch);
|
2011-02-14 00:27:07 -04:00
|
|
|
|
2012-08-21 23:19:51 -03:00
|
|
|
/// Calculate the tilt-compensated heading_ variables.
|
|
|
|
///
|
|
|
|
/// @param dcm_matrix The current orientation rotation matrix
|
2012-06-20 06:30:30 -03:00
|
|
|
///
|
|
|
|
/// @returns heading in radians
|
2012-08-21 23:19:51 -03:00
|
|
|
///
|
|
|
|
virtual float calculate_heading(const Matrix3f &dcm_matrix);
|
|
|
|
|
|
|
|
/// Set the compass orientation matrix, used to correct for
|
|
|
|
/// various compass mounting positions.
|
|
|
|
///
|
|
|
|
/// @param rotation_matrix Rotation matrix to transform magnetometer readings
|
|
|
|
/// to the body frame.
|
|
|
|
///
|
|
|
|
virtual void set_orientation(enum Rotation rotation);
|
|
|
|
|
|
|
|
/// Sets the compass offset x/y/z values.
|
|
|
|
///
|
|
|
|
/// @param offsets Offsets to the raw mag_ values.
|
|
|
|
///
|
|
|
|
virtual void set_offsets(const Vector3f &offsets);
|
|
|
|
|
|
|
|
/// Saves the current compass offset x/y/z values.
|
|
|
|
///
|
|
|
|
/// This should be invoked periodically to save the offset values maintained by
|
|
|
|
/// ::null_offsets.
|
|
|
|
///
|
|
|
|
virtual void save_offsets();
|
|
|
|
|
|
|
|
/// Returns the current offset values
|
|
|
|
///
|
|
|
|
/// @returns The current compass offsets.
|
|
|
|
///
|
|
|
|
virtual Vector3f &get_offsets();
|
|
|
|
|
|
|
|
/// Sets the initial location used to get declination
|
|
|
|
///
|
|
|
|
/// @param latitude GPS Latitude.
|
|
|
|
/// @param longitude GPS Longitude.
|
|
|
|
///
|
|
|
|
void set_initial_location(int32_t latitude, int32_t longitude);
|
|
|
|
|
|
|
|
/// Program new offset values.
|
|
|
|
///
|
|
|
|
/// @param x Offset to the raw mag_x value.
|
|
|
|
/// @param y Offset to the raw mag_y value.
|
|
|
|
/// @param z Offset to the raw mag_z value.
|
|
|
|
///
|
|
|
|
void set_offsets(int x, int y, int z) {
|
|
|
|
set_offsets(Vector3f(x, y, z));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform automatic offset updates
|
|
|
|
///
|
|
|
|
void null_offsets(void);
|
2011-02-14 00:27:07 -04:00
|
|
|
|
2012-02-24 23:11:07 -04:00
|
|
|
/// return true if the compass should be used for yaw calculations
|
2012-08-21 23:19:51 -03:00
|
|
|
bool use_for_yaw(void) {
|
|
|
|
return healthy && _use_for_yaw;
|
|
|
|
}
|
2012-01-12 17:43:39 -04:00
|
|
|
|
2012-08-21 23:19:51 -03:00
|
|
|
/// Sets the local magnetic field declination.
|
|
|
|
///
|
|
|
|
/// @param radians Local field declination.
|
|
|
|
///
|
|
|
|
virtual void set_declination(float radians);
|
|
|
|
float get_declination();
|
2011-02-14 00:27:07 -04:00
|
|
|
|
2012-02-11 07:53:30 -04:00
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
2011-02-14 00:27:07 -04:00
|
|
|
protected:
|
2012-08-21 23:19:51 -03:00
|
|
|
enum Rotation _orientation;
|
|
|
|
AP_Vector3f _offset;
|
|
|
|
AP_Float _declination;
|
|
|
|
AP_Int8 _learn; ///<enable calibration learning
|
|
|
|
AP_Int8 _use_for_yaw; ///<enable use for yaw calculation
|
|
|
|
AP_Int8 _auto_declination; ///<enable automatic declination code
|
2011-02-14 00:27:07 -04:00
|
|
|
|
2012-08-21 23:19:51 -03:00
|
|
|
bool _null_init_done; ///< first-time-around flag used by offset nulling
|
2012-03-28 06:46:11 -03:00
|
|
|
|
|
|
|
///< used by offset correction
|
|
|
|
static const uint8_t _mag_history_size = 20;
|
2012-08-21 23:19:51 -03:00
|
|
|
uint8_t _mag_history_index;
|
|
|
|
Vector3i _mag_history[_mag_history_size];
|
2011-02-14 00:27:07 -04:00
|
|
|
};
|
|
|
|
#endif
|