Subversion Repositories FlightCtrl

Rev

Rev 371 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 371 Rev 373
Line 1... Line 1...
1
 
1
 
2
 
2
 
3
typedef struct
3
struct MM3_working_struct
4
{
4
{
5
        uint8_t STATE;
5
        uint8_t STATE;
6
        unsigned int DRDY;
6
        unsigned int DRDY;
Line 11... Line 11...
11
        signed int y_axis_old;
11
        signed int y_axis_old;
12
        signed int z_axis;
12
        signed int z_axis;
13
        signed int z_axis_old;
13
        signed int z_axis_old;
14
        signed int NickGrad;
14
        signed int NickGrad;
15
        signed int RollGrad;
15
        signed int RollGrad;
16
}MM3_working_struct;
16
};
Line 17... Line 17...
17
 
17
 
18
 
18
 
19
typedef struct
19
struct MM3_calib_struct
20
{
20
{
21
        int8_t X_off;
21
        int8_t X_off;
22
        int8_t Y_off;
22
        int8_t Y_off;
Line 23... Line 23...
23
        int8_t Z_off;
23
        int8_t Z_off;
24
}MM3_calib_struct;
24
};
Line 25... Line 25...
25
 
25
 
26
extern MM3_working_struct MM3;
26
extern struct MM3_working_struct MM3;
27
extern MM3_calib_struct MM3_calib;
27
extern struct MM3_calib_struct MM3_calib;
28
 
28