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.
21 lines
376 B
21 lines
376 B
14 years ago
|
#ifndef __WMP_H
|
||
|
#define __WMP_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
extern unsigned int wmp_yaw;
|
||
|
extern unsigned int wmp_pitch;
|
||
|
extern unsigned int wmp_roll;
|
||
|
|
||
|
extern unsigned char wmp_calibration_data[];
|
||
|
|
||
|
extern bool wmp_yaw_fast;
|
||
|
extern bool wmp_pitch_fast;
|
||
|
extern bool wmp_roll_fast;
|
||
|
|
||
|
bool wmp_init(void);
|
||
|
bool wmp_sample(void);
|
||
|
bool wmp_read_calibration_data(void);
|
||
|
|
||
|
#endif /* __WMP_H */
|