Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2189 | - | 1 | /// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- |
2 | #ifndef AP_Compass_HIL_H |
||
3 | #define AP_Compass_HIL_H |
||
4 | |||
5 | #include "Compass.h" |
||
6 | |||
7 | class AP_Compass_HIL : public Compass |
||
8 | { |
||
9 | public: |
||
10 | AP_Compass_HIL() : Compass() { product_id = AP_COMPASS_TYPE_HIL; } |
||
11 | bool read(void); |
||
12 | void setHIL(float Mag_X, float Mag_Y, float Mag_Z); |
||
13 | }; |
||
14 | |||
15 | #endif |