mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
152edf7189
Using a global .dir-locals.el file is a better alternative than reincluding the same emacs header in every file of the project.
23 lines
411 B
C++
23 lines
411 B
C++
#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];
|
|
};
|