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.
26 lines
449 B
26 lines
449 B
11 years ago
|
// -*- 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
|