2013-01-03 23:25:57 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
#ifndef __AP_INERTIAL_SENSOR_PX4_H__
|
|
|
|
#define __AP_INERTIAL_SENSOR_PX4_H__
|
|
|
|
|
|
|
|
#include <AP_HAL.h>
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
|
|
|
|
|
|
|
|
#include <AP_Progmem.h>
|
|
|
|
#include "AP_InertialSensor.h"
|
|
|
|
#include <drivers/drv_accel.h>
|
|
|
|
#include <drivers/drv_gyro.h>
|
|
|
|
#include <uORB/uORB.h>
|
|
|
|
#include <uORB/topics/sensor_combined.h>
|
|
|
|
|
|
|
|
class AP_InertialSensor_PX4 : public AP_InertialSensor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2013-04-12 01:30:35 -03:00
|
|
|
AP_InertialSensor_PX4() : AP_InertialSensor() {}
|
2013-01-03 23:25:57 -04:00
|
|
|
|
|
|
|
/* Concrete implementation of AP_InertialSensor functions: */
|
|
|
|
bool update();
|
2013-01-11 06:17:21 -04:00
|
|
|
float get_delta_time();
|
2013-01-03 23:25:57 -04:00
|
|
|
uint32_t get_last_sample_time_micros();
|
|
|
|
float get_gyro_drift_rate();
|
|
|
|
uint16_t num_samples_available();
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint16_t _init_sensor( Sample_rate sample_rate );
|
2013-01-21 04:44:01 -04:00
|
|
|
static void _ins_timer(uint32_t now);
|
|
|
|
static void _accumulate(void);
|
2013-01-21 06:51:32 -04:00
|
|
|
uint64_t _last_update_usec;
|
2013-01-20 06:13:52 -04:00
|
|
|
float _delta_time;
|
2013-01-21 04:44:01 -04:00
|
|
|
static Vector3f _accel_sum;
|
|
|
|
static uint32_t _accel_sum_count;
|
|
|
|
static Vector3f _gyro_sum;
|
|
|
|
static uint32_t _gyro_sum_count;
|
|
|
|
static volatile bool _in_accumulate;
|
2013-01-21 06:51:32 -04:00
|
|
|
static uint64_t _last_accel_timestamp;
|
|
|
|
static uint64_t _last_gyro_timestamp;
|
2013-01-21 04:44:01 -04:00
|
|
|
uint8_t _sample_divider;
|
2013-01-20 06:13:52 -04:00
|
|
|
|
2013-02-06 20:20:45 -04: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);
|
|
|
|
|
2013-01-20 06:13:52 -04:00
|
|
|
// accelerometer and gyro driver handles
|
2013-01-21 04:44:01 -04:00
|
|
|
static int _accel_fd;
|
|
|
|
static int _gyro_fd;
|
2013-01-03 23:25:57 -04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif // __AP_INERTIAL_SENSOR_PX4_H__
|