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-11-10 00:35:28 -04:00
|
|
|
AP_InertialSensor_PX4() :
|
|
|
|
AP_InertialSensor(),
|
2014-02-21 00:53:34 -04:00
|
|
|
_last_get_sample_timestamp(0),
|
|
|
|
_sample_time_usec(0)
|
2013-12-08 05:44:31 -04:00
|
|
|
{
|
|
|
|
}
|
2013-01-03 23:25:57 -04:00
|
|
|
|
|
|
|
/* Concrete implementation of AP_InertialSensor functions: */
|
|
|
|
bool update();
|
2014-01-02 20:46:24 -04:00
|
|
|
float get_delta_time() const;
|
2013-01-03 23:25:57 -04:00
|
|
|
float get_gyro_drift_rate();
|
2013-10-08 03:28:39 -03:00
|
|
|
bool wait_for_sample(uint16_t timeout_ms);
|
2013-12-08 05:44:31 -04:00
|
|
|
bool healthy(void) const;
|
|
|
|
|
|
|
|
// multi-device interface
|
2013-12-08 18:50:12 -04:00
|
|
|
bool get_gyro_health(uint8_t instance) const;
|
2013-12-08 05:44:31 -04:00
|
|
|
uint8_t get_gyro_count(void) const;
|
|
|
|
|
2013-12-08 18:50:12 -04:00
|
|
|
bool get_accel_health(uint8_t instance) const;
|
2013-12-08 05:44:31 -04:00
|
|
|
uint8_t get_accel_count(void) const;
|
2013-01-03 23:25:57 -04:00
|
|
|
|
2014-02-27 01:27:46 -04:00
|
|
|
uint8_t get_primary_accel(void) const;
|
|
|
|
|
2013-01-03 23:25:57 -04:00
|
|
|
private:
|
2013-12-09 05:02:04 -04:00
|
|
|
uint8_t _get_primary_gyro(void) const;
|
|
|
|
|
2013-08-06 03:31:18 -03:00
|
|
|
uint16_t _init_sensor( Sample_rate sample_rate );
|
|
|
|
void _get_sample(void);
|
2013-12-08 05:44:31 -04:00
|
|
|
bool _sample_available(void);
|
2013-12-08 18:50:12 -04:00
|
|
|
Vector3f _accel_in[INS_MAX_INSTANCES];
|
|
|
|
Vector3f _gyro_in[INS_MAX_INSTANCES];
|
|
|
|
uint64_t _last_accel_timestamp[INS_MAX_INSTANCES];
|
|
|
|
uint64_t _last_gyro_timestamp[INS_MAX_INSTANCES];
|
2013-12-14 00:33:46 -04:00
|
|
|
uint64_t _last_get_sample_timestamp;
|
2013-08-06 03:31:18 -03:00
|
|
|
uint64_t _last_sample_timestamp;
|
|
|
|
uint32_t _sample_time_usec;
|
2013-12-08 05:44:31 -04:00
|
|
|
bool _have_sample_available;
|
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-12-08 05:44:31 -04:00
|
|
|
uint8_t _num_accel_instances;
|
|
|
|
uint8_t _num_gyro_instances;
|
2013-12-08 18:50:12 -04:00
|
|
|
int _accel_fd[INS_MAX_INSTANCES];
|
|
|
|
int _gyro_fd[INS_MAX_INSTANCES];
|
2013-01-03 23:25:57 -04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif // __AP_INERTIAL_SENSOR_PX4_H__
|