ardupilot/Tools/Replay/Parameters.h
Andrew Tridgell 3218ac8e7a Replay: added parameter handling
use parameters from log, and allow override
2014-03-01 15:15:46 +11:00

26 lines
449 B
C++

// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
#ifndef PARAMETERS_H
#define PARAMETERS_H
#include <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
};
AP_Int8 dummy;
};
extern const AP_Param::Info var_info[];
#endif // PARAMETERS_H