Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
700 | killagreg | 1 | #ifndef _MM3_H |
2 | #define _MM3_H |
||
3 | |||
4 | #include <inttypes.h> |
||
5 | |||
6 | typedef struct |
||
7 | { |
||
8 | int8_t X_off; |
||
9 | int8_t Y_off; |
||
10 | int8_t Z_off; |
||
11 | int16_t X_range; |
||
12 | int16_t Y_range; |
||
13 | int16_t Z_range; |
||
14 | } MM3_calib_t; |
||
15 | |||
16 | extern MM3_calib_t MM3_calib; |
||
17 | |||
741 | killagreg | 18 | // Initialization of the MM3 communication |
726 | killagreg | 19 | void MM3_Init(void); |
741 | killagreg | 20 | // should be called cyclic to get actual compass reading |
726 | killagreg | 21 | void MM3_Update(void); |
741 | killagreg | 22 | // this function calibrates the MM3 |
23 | // and returns immediately if the communication to the MM3-Board is broken. |
||
726 | killagreg | 24 | void MM3_Calibrate(void); |
741 | killagreg | 25 | // calculates the current compass heading in a range from 0 to 360 deg. |
26 | // returns -1 of no compass data are available |
||
726 | killagreg | 27 | int16_t MM3_Heading(void); |
700 | killagreg | 28 | |
29 | #endif //_MM3_H |
||
30 |