Subversion Repositories NaviCtrl

Rev

Rev 380 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
41 ingob 1
#ifndef _UART1_H
2
#define _UART1_H
3
 
4
#define UART_FLIGHTCTRL 0
5
#define UART_MK3MAG     1
6
#define UART_MKGPS      2
7
 
92 killagreg 8
#include "ubx.h"
41 ingob 9
 
256 killagreg 10
#define NC_ERROR0_SPI_RX                                0x01
11
#define NC_ERROR0_COMPASS_RX                    0x02
12
#define NC_ERROR0_FC_INCOMPATIBLE               0x04
13
#define NC_ERROR0_COMPASS_INCOMPATIBLE  0x08
14
#define NC_ERROR0_GPS_RX                                0x10
15
#define NC_ERROR0_COMPASS_VALUE                 0x20
156 killagreg 16
 
62 killagreg 17
typedef struct
92 killagreg 18
{
112 killagreg 19
        u8 SWMajor;
20
        u8 SWMinor;
21
        u8 ProtoMajor;
22
        u8 ProtoMinor;
23
        u8 SWPatch;
231 holgerb 24
        u8 HardwareError[5];
161 killagreg 25
} __attribute__((packed)) UART_VersionInfo_t;
112 killagreg 26
 
27
extern UART_VersionInfo_t UART_VersionInfo;
28
 
29
typedef struct
30
{
161 killagreg 31
        s16 AngleNick;  // in 0.1 deg
32
        s16 AngleRoll;   // in 0.1 deg
33
        s16 Heading;    // in 0.1 deg
358 holgerb 34
    u8 StickNick;
35
    u8 StickRoll;
36
    u8 StickYaw;
37
    u8 StickGas;
38
        u8 reserve[4];
61 holgerb 39
} __attribute__((packed)) Data3D_t;
40
 
41
extern Data3D_t Data3D;
42
 
112 killagreg 43
 
44
extern const u8 ANALOG_LABEL[32][16];
45
 
338 holgerb 46
#define AMPEL_FC                0x01
47
#define AMPEL_BL                0x02
48
#define AMPEL_NC                0x04
49
#define AMPEL_COMPASS   0x08
50
 
41 ingob 51
typedef struct
52
{
338 holgerb 53
        u8 StatusGreen;
54
        u8 StatusRed;
41 ingob 55
        u16 Analog[32];    // Debugwerte
56
} __attribute__((packed)) DebugOut_t;
57
 
58
extern DebugOut_t DebugOut;
59
 
60
typedef struct
61
{
62
        u8      Digital[2];
63
        u8      RemoteButtons;
64
        s8      Nick;
65
        s8      Roll;
66
        s8      Yaw;
67
        u8      Gas;
68
        s8      Height;
69
        u8      free;
70
        u8      Frame;
71
        u8      Config;
72
} __attribute__((packed)) ExternControl_t;
73
 
74
extern ExternControl_t ExternControl;
75
 
76
typedef struct
77
{
78
        s16 Nick;
79
        s16 Roll;
80
        s16 Compass;                                    // angle between north and head of the MK
161 killagreg 81
} __attribute__((packed)) Attitude_t;
41 ingob 82
 
83
typedef struct
84
{
89 killagreg 85
        u16 Distance;                                   // distance to target in dm
92 killagreg 86
        s16 Bearing;                                    // course to target in deg
161 killagreg 87
} __attribute__((packed)) GPS_PosDev_t;
41 ingob 88
 
294 holgerb 89
#define NAVIDATA_VERSION 5
89 killagreg 90
 
41 ingob 91
typedef struct
92
{
89 killagreg 93
        u8 Version;                                             // version of the data structure
41 ingob 94
        GPS_Pos_t CurrentPosition;              // see ubx.h for details
95
        GPS_Pos_t TargetPosition;
96
        GPS_PosDev_t TargetPositionDeviation;
97
        GPS_Pos_t HomePosition;
98
        GPS_PosDev_t HomePositionDeviation;
99
        u8  WaypointIndex;                              // index of current waypoints running from 0 to WaypointNumber-1
100
        u8  WaypointNumber;                             // number of stored waypoints
89 killagreg 101
        u8  SatsInUse;                                  // number of satellites used for position solution
41 ingob 102
        s16 Altimeter;                                  // hight according to air pressure
103
        s16 Variometer;                                 // climb(+) and sink(-) rate
104
        u16 FlyingTime;                                 // in seconds
105
        u8  UBat;                                               // Battery Voltage in 0.1 Volts
106
        u16 GroundSpeed;                                // speed over ground in cm/s (2D)
89 killagreg 107
        s16 Heading;                                    // current flight direction in ° as angle to north
108
        s16     CompassHeading;                         // current compass value in °
41 ingob 109
        s8  AngleNick;                                  // current Nick angle in 1°
110
        s8  AngleRoll;                                  // current Rick angle in 1°
111
        u8  RC_Quality;                                 // RC_Quality
255 killagreg 112
        u8  FCStatusFlags;                              // Flags from FC
41 ingob 113
        u8  NCFlags;                                    // Flags from NC
114
        u8  Errorcode;                                  // 0 --> okay
161 killagreg 115
        u8  OperatingRadius;                    // current operation radius around the Home Position in m
89 killagreg 116
        s16 TopSpeed;                                   // velocity in vertical direction in cm/s
125 killagreg 117
        u8  TargetHoldTime;                             // time in s to stay at the given target, counts down to 0 if target has been reached
294 holgerb 118
        u8  FCStatusFlags2;                             // StatusFlags2 (since version 5 added)
161 killagreg 119
        s16 SetpointAltitude;                   // setpoint for altitude
120
        u8  Gas;                                                // for future use
206 killagreg 121
        u16 Current;                                    // actual current in 0.1A steps
122
        u16 UsedCapacity;                               // used capacity in mAh
41 ingob 123
} __attribute__((packed)) NaviData_t;
124
 
125
extern NaviData_t NaviData;
126
 
92 killagreg 127
#define NC_FLAG_FREE                    0x01
128
#define NC_FLAG_PH                              0x02
129
#define NC_FLAG_CH                              0x04
130
#define NC_FLAG_RANGE_LIMIT             0x08
131
#define NC_FLAG_NOSERIALLINK    0x10
132
#define NC_FLAG_TARGET_REACHED  0x20
101 holgerb 133
#define NC_FLAG_MANUAL_CONTROL  0x40
254 killagreg 134
#define NC_FLAG_GPS_OK                  0x80
41 ingob 135
 
136
extern UART_TypeDef *DebugUART;
92 killagreg 137
extern volatile u8 SerialLinkOkay;
349 ingob 138
extern Buffer_t UART1_tx_buffer;
380 holgerb 139
extern Buffer_t UART1_rx_buffer;
41 ingob 140
 
141
void UART1_Init(void);
142
void UART1_Transmit(void);
143
void UART1_TransmitTxData(void);
144
void UART1_ProcessRxData(void);
145
 
110 killagreg 146
s16  UART1_Putchar(char c);
147
void UART1_PutString(u8 *s);
150 killagreg 148
extern u8 text[]; // globally used text buffer
110 killagreg 149
extern u8 UART1_Request_SendFollowMe;
360 holgerb 150
extern u8 LastTransmittedFCStatusFlags2;
41 ingob 151
#endif //_UART1_H