Subversion Repositories NaviCtrl

Rev

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

Rev 278 Rev 280
Line 9... Line 9...
9
        s16 Nick;
9
        s16 Nick;
10
        s16 Roll;
10
        s16 Roll;
11
        s16 Yaw;
11
        s16 Yaw;
12
}  __attribute__((packed)) GPS_Stick_t;
12
}  __attribute__((packed)) GPS_Stick_t;
Line -... Line 13...
-
 
13
 
-
 
14
#define CAM_UPDATE_AZIMUTH              0x01
13
 
15
#define CAM_UPDATE_ELEVATION    0x02
14
typedef struct
16
typedef struct
15
{
17
{
16
        s16 Azimuth;            // angle measured clockwise from north
18
        s16 Azimuth;            // angle measured clockwise from north
17
        s16 Elevation;          // angle measured upwards from horizont
19
        s16 Elevation;          // angle measured upwards from horizont
18
        u8 State;                       // NEWDATA, PROCESSED, INVALID
20
        u8 UpdateMask;
Line 19... Line 21...
19
} __attribute__((packed)) CAM_Orientation_t;
21
} __attribute__((packed)) CAM_Orientation_t;
20
 
22
 
Line 21... Line 23...
21
extern CAM_Orientation_t CAM_Orientation;
23
extern CAM_Orientation_t CAM_Orientation;
22
extern Waypoint_t* GPS_pWaypoint;
24
extern Point_t* GPS_pWaypoint;
23
 
25