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:
|
2012-02-11 07:53:30 -04:00
|
|
|
AP_Compass_HIL() : Compass() { 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
|