AP_ICEngine: tidy includes
This commit is contained in:
parent
b158e15ed4
commit
0ea46a93a1
@ -22,6 +22,7 @@
|
|||||||
#include <RC_Channel/RC_Channel.h>
|
#include <RC_Channel/RC_Channel.h>
|
||||||
|
|
||||||
#include "AP_ICEngine.h"
|
#include "AP_ICEngine.h"
|
||||||
|
#include <AP_RPM/AP_RPM.h>
|
||||||
|
|
||||||
extern const AP_HAL::HAL& hal;
|
extern const AP_HAL::HAL& hal;
|
||||||
|
|
||||||
|
@ -18,13 +18,12 @@
|
|||||||
*/
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AP_HAL/AP_HAL.h>
|
#include <AP_Param/AP_Param.h>
|
||||||
#include <AP_RPM/AP_RPM.h>
|
|
||||||
|
|
||||||
class AP_ICEngine {
|
class AP_ICEngine {
|
||||||
public:
|
public:
|
||||||
// constructor
|
// constructor
|
||||||
AP_ICEngine(const AP_RPM &_rpm);
|
AP_ICEngine(const class AP_RPM &_rpm);
|
||||||
|
|
||||||
static const struct AP_Param::GroupInfo var_info[];
|
static const struct AP_Param::GroupInfo var_info[];
|
||||||
|
|
||||||
@ -56,7 +55,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
static AP_ICEngine *_singleton;
|
static AP_ICEngine *_singleton;
|
||||||
|
|
||||||
const AP_RPM &rpm;
|
const class AP_RPM &rpm;
|
||||||
|
|
||||||
enum ICE_State state;
|
enum ICE_State state;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user