Subversion Repositories FlightCtrl

Rev

Rev 1612 | Rev 1969 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1612 dongfang 1
#ifndef _MK3MAG_H
2
#define _MK3MAG_H
3
 
4
typedef struct {
1821 - 5
        int16_t Attitude[2];
6
        uint8_t UserParam[2];
7
        uint8_t CalState;
8
        uint8_t Orientation;
1612 dongfang 9
} ToMk3Mag_t;
10
 
11
extern ToMk3Mag_t ToMk3Mag;
12
 
13
// Initialization
14
void MK3MAG_Init(void);
15
 
16
// should be called cyclic to get actual compass heading
17
void MK3MAG_Update(void);
18
 
19
#endif //_MK3MAG_H