Subversion Repositories NaviCtrl

Rev

Rev 253 | Rev 292 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 253 Rev 254
1
#ifndef _COMPASS_H
1
#ifndef _COMPASS_H
2
#define _COMPASS_H
2
#define _COMPASS_H
3
 
3
 
4
typedef struct
4
typedef struct
5
{
5
{
6
  s16 X;
6
  s16 X;
7
  s16 Y;
7
  s16 Y;
8
  s16 Z;
8
  s16 Z;
9
} __attribute__((packed)) s16vec_t;
9
} __attribute__((packed)) s16vec_t;
10
 
10
 
-
 
11
extern volatile s16vec_t MagVector;       // current magnetic field vector
-
 
12
extern volatile s16 Compass_Heading;  // current heading direction
-
 
13
extern volatile u8  Compass_CalState; // current calibration state
-
 
14
 
-
 
15
#define COMPASS_NONE    0
-
 
16
#define COMPASS_MK3MAG  1
11
extern volatile s16vec_t MagVector;
17
#define COMPASS_NCMAG   2
12
extern volatile s16 CompassHeading;
18
extern u8 Compass_Device;
13
 
19
 
14
void Compass_Init(void);
20
void Compass_Init(void);
15
void Compass_UpdateHeading(void);
21
void Compass_UpdateHeading(void);
16
void Compass_UpdateMagVector(void);
22
void Compass_UpdateMagVector(void);
-
 
23
void Compass_SetCalState(u8 CalState);
-
 
24
void Compass_UpdateCalState(void);
17
 
25
 
18
#endif  //  _COMPASS_H
26
#endif  //  _COMPASS_H
19
 
27