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.
62 lines
1.3 KiB
62 lines
1.3 KiB
#ifndef AP_DCM_HIL_H |
|
#define AP_DCM_HIL_H |
|
|
|
#include <FastSerial.h> |
|
#include <AP_Math.h> |
|
#include <inttypes.h> |
|
#include "WProgram.h" |
|
#include <AP_Compass.h> |
|
#include <AP_ADC.h> |
|
#include <AP_GPS.h> |
|
#include <AP_IMU.h> |
|
|
|
|
|
class AP_DCM_HIL |
|
{ |
|
public: |
|
// Constructors |
|
AP_DCM_HIL() : |
|
_dcm_matrix(1, 0, 0, |
|
0, 1, 0, |
|
0, 0, 1) |
|
{} |
|
|
|
// Accessors |
|
Vector3f get_gyro(void) {return _omega_integ_corr; } |
|
Vector3f get_accel(void) { return _accel_vector; } |
|
Matrix3f get_dcm_matrix(void) {return _dcm_matrix; } |
|
Matrix3f get_dcm_transposed(void) {Matrix3f temp = _dcm_matrix; return temp.transpose();} |
|
|
|
void set_centripetal(bool b) {} |
|
void set_compass(Compass *compass) {} |
|
|
|
// Methods |
|
void update_DCM(float _G_Dt) {} |
|
|
|
float get_health(void) { return 1.0; } |
|
|
|
long roll_sensor; // Degrees * 100 |
|
long pitch_sensor; // Degrees * 100 |
|
long yaw_sensor; // Degrees * 100 |
|
|
|
float roll; // Radians |
|
float pitch; // Radians |
|
float yaw; // Radians |
|
|
|
uint8_t gyro_sat_count; |
|
uint8_t renorm_sqrt_count; |
|
uint8_t renorm_blowup_count; |
|
|
|
void setHil(float roll, float pitch, float yaw, |
|
float rollRate, float pitchRate, float yawRate); |
|
private: |
|
// Methods |
|
Matrix3f _dcm_matrix; |
|
Vector3f _omega_integ_corr; |
|
Vector3f _accel_vector; |
|
}; |
|
|
|
#endif |
|
|
|
|
|
|
|
|