2011-12-28 05:31:36 -04:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-02-14 00:27:07 -04:00
|
|
|
#ifndef AP_Compass_HIL_H
|
|
|
|
#define AP_Compass_HIL_H
|
|
|
|
|
|
|
|
#include "Compass.h"
|
|
|
|
|
|
|
|
class AP_Compass_HIL : public Compass
|
|
|
|
{
|
|
|
|
public:
|
2011-06-28 13:30:42 -03:00
|
|
|
AP_Compass_HIL(AP_Var::Key key = AP_Var::k_key_none) : Compass(key) { product_id = AP_COMPASS_TYPE_HIL; }
|
2011-12-28 05:31:36 -04:00
|
|
|
bool read(void);
|
|
|
|
void setHIL(float Mag_X, float Mag_Y, float Mag_Z);
|
2011-02-14 00:27:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|