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.
32 lines
601 B
32 lines
601 B
8 years ago
|
#pragma once
|
||
|
|
||
|
#include "AP_Baro_Backend.h"
|
||
|
|
||
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
||
|
#include <SITL/SITL.h>
|
||
|
#include <AP_Math/vectorN.h>
|
||
|
|
||
|
class AP_Baro_SITL : public AP_Baro_Backend {
|
||
|
public:
|
||
|
AP_Baro_SITL(AP_Baro &);
|
||
|
|
||
|
void update() override;
|
||
|
|
||
|
private:
|
||
|
uint8_t instance;
|
||
|
SITL::SITL *sitl;
|
||
|
|
||
|
// barometer delay buffer variables
|
||
|
struct readings_baro {
|
||
|
uint32_t time;
|
||
|
float data;
|
||
|
};
|
||
|
uint8_t store_index;
|
||
|
uint32_t last_store_time;
|
||
|
static const uint8_t buffer_length = 50;
|
||
|
VectorN<readings_baro,buffer_length> buffer;
|
||
|
|
||
|
};
|
||
|
#endif // CONFIG_HAL_BOARD
|
||
|
|