ardupilot/Tools/Replay/Parameters.h
Mathieu OTHACEHE 152edf7189 Global: remove mode line from headers
Using a global .dir-locals.el file is a better alternative than
reincluding the same emacs header in every file of the project.
2016-10-24 09:42:01 -02:00

24 lines
405 B
C++

#pragma once
#include <AP_Common/AP_Common.h>
// Global parameter class.
//
class Parameters {
public:
enum {
k_param_dummy,
k_param_barometer,
k_param_ins,
k_param_ahrs,
k_param_airspeed,
k_param_NavEKF,
k_param_NavEKF2,
k_param_compass,
k_param_dataflash
};
AP_Int8 dummy;
};
extern const AP_Param::Info var_info[];