2013-10-07 21:07:59 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
#ifndef __AP_INERTIAL_SENSOR_L3G4200D_H__
|
|
|
|
#define __AP_INERTIAL_SENSOR_L3G4200D_H__
|
|
|
|
|
|
|
|
#include <AP_HAL.h>
|
2014-07-06 23:03:57 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
|
2013-10-07 21:07:59 -03:00
|
|
|
|
|
|
|
#include <AP_Progmem.h>
|
|
|
|
#include "AP_InertialSensor.h"
|
|
|
|
#include <Filter.h>
|
|
|
|
#include <LowPassFilter2p.h>
|
|
|
|
|
|
|
|
class AP_InertialSensor_L3G4200D : public AP_InertialSensor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
AP_InertialSensor_L3G4200D();
|
|
|
|
|
|
|
|
/* Concrete implementation of AP_InertialSensor functions: */
|
|
|
|
bool update();
|
2014-01-02 20:46:24 -04:00
|
|
|
float get_delta_time() const;
|
2013-10-07 21:07:59 -03:00
|
|
|
float get_gyro_drift_rate();
|
2013-10-08 03:28:39 -03:00
|
|
|
bool wait_for_sample(uint16_t timeout_ms);
|
2013-10-07 21:07:59 -03:00
|
|
|
|
|
|
|
private:
|
|
|
|
uint16_t _init_sensor( Sample_rate sample_rate );
|
|
|
|
void _accumulate(void);
|
2013-12-08 05:43:53 -04:00
|
|
|
bool _sample_available();
|
2013-10-07 21:07:59 -03:00
|
|
|
uint64_t _last_update_usec;
|
|
|
|
Vector3f _accel_filtered;
|
|
|
|
Vector3f _gyro_filtered;
|
|
|
|
uint32_t _sample_period_usec;
|
|
|
|
uint32_t _last_sample_time;
|
2013-10-08 05:19:11 -03:00
|
|
|
volatile uint32_t _gyro_samples_available;
|
|
|
|
volatile uint8_t _gyro_samples_needed;
|
2014-05-21 07:13:40 -03:00
|
|
|
float _delta_time;
|
|
|
|
struct timespec _next_sample_ts;
|
2013-10-07 21:07:59 -03:00
|
|
|
|
|
|
|
// support for updating filter at runtime
|
|
|
|
uint8_t _last_filter_hz;
|
|
|
|
uint8_t _default_filter_hz;
|
|
|
|
|
|
|
|
void _set_filter_frequency(uint8_t filter_hz);
|
|
|
|
|
|
|
|
// Low Pass filters for gyro and accel
|
|
|
|
LowPassFilter2p _accel_filter_x;
|
|
|
|
LowPassFilter2p _accel_filter_y;
|
|
|
|
LowPassFilter2p _accel_filter_z;
|
|
|
|
LowPassFilter2p _gyro_filter_x;
|
|
|
|
LowPassFilter2p _gyro_filter_y;
|
|
|
|
LowPassFilter2p _gyro_filter_z;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif // __AP_INERTIAL_SENSOR_L3G4200D_H__
|