2012-03-11 05:00:06 -03:00
|
|
|
#ifndef AP_AHRS_HIL_H
|
|
|
|
#define AP_AHRS_HIL_H
|
2010-12-10 06:17:27 -04:00
|
|
|
|
2012-03-11 05:00:06 -03:00
|
|
|
class AP_AHRS_HIL : public AP_AHRS
|
2010-12-10 06:17:27 -04:00
|
|
|
{
|
|
|
|
public:
|
2012-08-21 23:19:51 -03:00
|
|
|
// Constructors
|
|
|
|
AP_AHRS_HIL(IMU *imu, GPS *&gps) : AP_AHRS(imu, gps)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accessors
|
|
|
|
Vector3f get_gyro(void) {
|
|
|
|
return _omega;
|
|
|
|
}
|
|
|
|
|
|
|
|
Matrix3f get_dcm_matrix(void) {
|
|
|
|
Matrix3f m;
|
|
|
|
m.from_euler(roll, pitch, yaw);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Methods
|
|
|
|
void update(void) {
|
2012-09-15 05:47:18 -03:00
|
|
|
_imu->update();
|
2012-08-21 23:19:51 -03:00
|
|
|
}
|
2012-09-15 05:47:18 -03:00
|
|
|
|
2012-08-21 23:19:51 -03:00
|
|
|
void setHil(float roll, float pitch, float yaw,
|
|
|
|
float rollRate, float pitchRate, float yawRate);
|
|
|
|
|
|
|
|
// return the current estimate of the gyro drift
|
|
|
|
Vector3f get_gyro_drift(void) {
|
|
|
|
return Vector3f(0,0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// reset the current attitude, used on new IMU calibration
|
|
|
|
void reset(bool recover_eulers=false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
float get_error_rp(void) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
float get_error_yaw(void) {
|
|
|
|
return 0;
|
|
|
|
}
|
2011-07-30 17:34:23 -03:00
|
|
|
|
2010-12-10 06:17:27 -04:00
|
|
|
private:
|
2012-08-21 23:19:51 -03:00
|
|
|
Vector3f _omega;
|
2010-12-10 06:17:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|