1997-05-29 00:09:51 +00:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
TITLE: ls_cockpit.h
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
FUNCTION: Header for cockpit IO
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
MODULE STATUS: Developmental
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
GENEALOGY: Created 20 DEC 93 by E. B. Jackson
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
DESIGNED BY: E. B. Jackson
|
|
|
|
|
|
|
|
CODED BY: E. B. Jackson
|
|
|
|
|
|
|
|
MAINTAINED BY: E. B. Jackson
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
MODIFICATION HISTORY:
|
|
|
|
|
|
|
|
DATE PURPOSE BY
|
|
|
|
|
|
|
|
950314 Added "throttle_pct" field to cockpit header for both
|
|
|
|
display and trim purposes. EBJ
|
|
|
|
|
|
|
|
CURRENT RCS HEADER:
|
|
|
|
|
|
|
|
$Header$
|
|
|
|
$Log$
|
1997-05-31 19:16:24 +00:00
|
|
|
Revision 1.2 1997/05/31 19:16:27 curt
|
|
|
|
Elevator trim added.
|
|
|
|
|
1997-05-29 00:09:51 +00:00
|
|
|
Revision 1.1 1997/05/29 00:09:54 curt
|
|
|
|
Initial Flight Gear revision.
|
|
|
|
|
|
|
|
* Revision 1.3 1995/03/15 12:32:10 bjax
|
|
|
|
* Added throttle_pct field.
|
|
|
|
*
|
|
|
|
* Revision 1.2 1995/02/28 20:37:02 bjax
|
|
|
|
* Changed name of gear_sel_down switch to gear_sel_up to reflect
|
|
|
|
* correct sense of switch. EBJ
|
|
|
|
*
|
|
|
|
* Revision 1.1 1993/12/21 14:39:04 bjax
|
|
|
|
* Initial revision
|
|
|
|
*
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float long_stick, lat_stick, rudder_pedal;
|
1997-05-31 19:16:24 +00:00
|
|
|
float long_trim;
|
1997-05-29 00:09:51 +00:00
|
|
|
float throttle[4];
|
|
|
|
short forward_trim, aft_trim, left_trim, right_trim;
|
|
|
|
short left_pb_on_stick, right_pb_on_stick, trig_pos_1, trig_pos_2;
|
|
|
|
short sb_extend, sb_retract, gear_sel_up;
|
|
|
|
float throttle_pct;
|
|
|
|
} COCKPIT;
|
|
|
|
|
|
|
|
extern COCKPIT cockpit_;
|
|
|
|
|
|
|
|
#define Left_button cockpit_.left_pb_on_stick
|
|
|
|
#define Right_button cockpit_.right_pb_on_stick
|
|
|
|
#define Rudder_pedal cockpit_.rudder_pedal
|
|
|
|
#define Throttle cockpit_.throttle
|
|
|
|
#define Throttle_pct cockpit_.throttle_pct
|
|
|
|
#define First_trigger cockpit_.trig_pos_1
|
|
|
|
#define Second_trigger cockpit_.trig_pos_2
|
|
|
|
#define Long_control cockpit_.long_stick
|
1997-05-31 19:16:24 +00:00
|
|
|
#define Long_trim cockpit_.long_trim
|
1997-05-29 00:09:51 +00:00
|
|
|
#define Lat_control cockpit_.lat_stick
|
|
|
|
#define Fwd_trim cockpit_.forward_trim
|
|
|
|
#define Aft_trim cockpit_.aft_trim
|
|
|
|
#define Left_trim cockpit_.left_trim
|
|
|
|
#define Right_trim cockpit_.right_trim
|
|
|
|
#define SB_extend cockpit_.sb_extend
|
|
|
|
#define SB_retract cockpit_.sb_retract
|
|
|
|
#define Gear_sel_up cockpit_.gear_sel_up
|