ardupilot/libraries/AP_Stats/AP_Stats.h
2016-10-29 14:53:25 +09:00

24 lines
348 B
C++

#pragma once
// AP_Stats is used to collect and put to permanent storage data about
// the vehicle's autopilot
#include <AP_Common/AP_Common.h>
#include <AP_Param/AP_Param.h>
class AP_Stats
{
public:
void init();
static const struct AP_Param::GroupInfo var_info[];
private:
struct {
AP_Int16 bootcount;
} params;
};