Rev 1969 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1969 | Rev 2039 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | #ifndef _MK3MAG_H |
1 | #ifndef _MK3MAG_H |
2 | #define _MK3MAG_H |
2 | #define _MK3MAG_H |
Line 3... | Line 3... | ||
3 | 3 | ||
4 | typedef struct { |
4 | typedef struct { |
5 | int16_t Attitude[2]; |
5 | int16_t attitude[2]; |
6 | uint8_t UserParam[2]; |
6 | uint8_t userParam[2]; |
7 | uint8_t CalState; |
7 | uint8_t calState; |
8 | uint8_t Orientation; |
8 | uint8_t orientation; |
Line 9... | Line 9... | ||
9 | } ToMk3Mag_t; |
9 | } ToMk3Mag_t; |
Line 10... | Line 10... | ||
10 | 10 | ||
11 | extern ToMk3Mag_t toMk3Mag; |
11 | extern ToMk3Mag_t toMk3Mag; |
Line 12... | Line 12... | ||
12 | 12 | ||
13 | // Initialization |
13 | // Initialization |
Line 14... | Line 14... | ||
14 | void MK3MAG_Init(void); |
14 | void MK3MAG_init(void); |