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.
22 lines
411 B
22 lines
411 B
#pragma once |
|
|
|
#include "AP_Baro_Backend.h" |
|
|
|
class AP_Baro_PX4 : public AP_Baro_Backend |
|
{ |
|
public: |
|
AP_Baro_PX4(AP_Baro &); |
|
void update(); |
|
|
|
private: |
|
uint8_t _num_instances; |
|
|
|
struct px4_instance { |
|
uint8_t instance; |
|
int fd; |
|
float pressure_sum; |
|
float temperature_sum; |
|
uint32_t sum_count; |
|
uint64_t last_timestamp; |
|
} instances[BARO_MAX_INSTANCES]; |
|
};
|
|
|