Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
801 - 1
/***************************************************************************
2
 *   Copyright (C) 2009 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
19
#ifndef MK_DATATYPES_H
20
#define MK_DATATYPES_H
21
 
22
#include <stdint.h>
23
 
24
#ifdef _BETA_
906 - 25
    static const int MK_VERSION_SETTINGS = 85; // wird angepasst, wenn sich die EEPROM-Daten ge�ndert haben
801 - 26
#else
906 - 27
    static const int MK_VERSION_SETTINGS = 85; // wird angepasst, wenn sich die EEPROM-Daten ge�ndert haben
801 - 28
#endif
29
 
30
static const int MK_VERSION_NAVI     =  4; // wird angepasst, wenn sich die Navi-Daten ge�ndert haben
31
 
32
static const int MK_VERSION_MIXER    =  1; // wird angepasst, wenn sich die Mixer-Daten ge�ndert haben
33
static const int MK_MAX_MOTOR        =  16; // Maximale Anzahl der Motoren im Mixer
34
 
35
// Version des Seriellen Protokoll
36
static const int VERSION_SERIAL_MAJOR = 11;
37
static const int VERSION_SERIAL_MINOR = 0;
38
 
39
// Basis-Addressen der verschiedenen Hardware
40
static const int ADDRESS_ALL    = 0;
41
static const int ADDRESS_FC     = 1;
42
static const int ADDRESS_NC     = 2;
43
static const int ADDRESS_MK3MAG = 3;
44
static const int ADDRESS_BLC    = 5;
45
 
46
#define FCFLAG_MOTOR_RUN        0x01
47
#define FCFLAG_FLY              0x02
48
#define FCFLAG_CALIBRATE        0x04
49
#define FCFLAG_START            0x08
50
#define FCFLAG_NOTLANDUNG       0x10
51
#define FCFLAG_LOWBAT           0x20
52
#define FCFLAG_SPI_RX_ERR       0x40
53
#define FCFLAG_I2CERR           0x80
54
 
55
#define DEFEKT_G_NICK           0x01
56
#define DEFEKT_G_ROLL           0x02
57
#define DEFEKT_G_GIER           0x04
58
#define DEFEKT_A_NICK           0x08
59
#define DEFEKT_A_ROLL           0x10
60
#define DEFEKT_A_Z              0x20
61
#define DEFEKT_PRESSURE         0x40
62
#define DEFEKT_CAREFREE_ERR     0x80
63
 
64
#define DEFEKT_I2C              0x01
65
#define DEFEKT_BL_MISSING       0x02
66
#define DEFEKT_SPI_RX_ERR       0x04
67
#define DEFEKT_PPM_ERR          0x08
68
#define DEFEKT_MIXER_ERR        0x10
69
 
70
#define CFG_HOEHENREGELUNG       0x01
71
#define CFG_HOEHEN_SCHALTER      0x02
72
#define CFG_HEADING_HOLD         0x04
73
#define CFG_KOMPASS_AKTIV        0x08
74
#define CFG_KOMPASS_FIX          0x10
75
#define CFG_GPS_AKTIV            0x20
76
#define CFG_ACHSENKOPPLUNG_AKTIV 0x40
77
#define CFG_DREHRATEN_BEGRENZER  0x80
78
 
79
#define CFG_LOOP_OBEN            0x01
80
#define CFG_LOOP_UNTEN           0x02
81
#define CFG_LOOP_LINKS           0x04
82
#define CFG_LOOP_RECHTS          0x08
83
#define CFG_MOTOR_BLINK          0x10
84
#define CFG_MOTOR_OFF_LED1       0x20
85
#define CFG_MOTOR_OFF_LED2       0x40
86
#define CFG_RES4                 0x80
87
 
88
#define CFG2_HEIGHT_LIMIT        0x01
89
#define CFG2_VARIO_BEEP          0x02
90
#define CFG_SENSITIVE_RC         0x04
906 - 91
#define CFG_3_3V_REFERENCE       0x08
801 - 92
 
93
#define CFG0_AIRPRESS_SENSOR            0x01
94
#define CFG0_HEIGHT_SWITCH              0x02
95
#define CFG0_HEADING_HOLD               0x04
96
#define CFG0_COMPASS_ACTIVE             0x08
97
#define CFG0_COMPASS_FIX                0x10
98
#define CFG0_GPS_ACTIVE                 0x20
99
#define CFG0_AXIS_COUPLING_ACTIVE       0x40
100
#define CFG0_ROTARY_RATE_LIMITER        0x80
101
 
102
// defines for the receiver selection
103
#define RECEIVER_PPM                    0
104
#define RECEIVER_SPEKTRUM               1
105
#define RECEIVER_SPEKTRUM_HI_RES        2
106
#define RECEIVER_SPEKTRUM_LOW_RES       3
107
#define RECEIVER_JETI                   4
108
#define RECEIVER_ACT_DSL                5
109
#define RECEIVER_UNKNOWN                0xFF
110
 
111
struct s_MK_VersionInfo
112
{
113
  unsigned char SWMajor;
114
  unsigned char SWMinor;
115
  unsigned char ProtoMajor;
116
  unsigned char ProtoMinor;
117
  unsigned char SWPatch;
118
  unsigned char HardwareError[5];
119
};
120
 
121
struct s_MK_Debug
122
{
123
 unsigned char Digital[2];
124
 int16_t Analog[32];    // Debugwerte
125
};
126
 
127
struct s_MK_DebugLabels
128
{
129
    int Position;
130
    QString Text;
131
};
132
 
133
//typedef int16_t s_MK_PPM_Data[26];
134
 
135
struct s_MK_PPM_Data
136
{
137
    int16_t Data[26];
138
};
139
 
140
 
141
struct s_MK_Settings
142
{
143
    // Die ersten beiden Bytes nicht an den MK senden.
906 - 144
    unsigned char Index;
801 - 145
 
906 - 146
    unsigned char Revision;
147
    unsigned char Kanalbelegung[12];       // GAS[0], GIER[1],NICK[2], ROLL[3], POTI1, POTI2, POTI3
148
    unsigned char GlobalConfig;           // 0x01=Höhenregler aktiv,0x02=Kompass aktiv, 0x04=GPS aktiv, 0x08=Heading Hold aktiv
149
    unsigned char Hoehe_MinGas;           // Wert : 0-100
150
    unsigned char Luftdruck_D;            // Wert : 0-250
151
    unsigned char MaxHoehe;               // Wert : 0-32
152
    unsigned char Hoehe_P;                // Wert : 0-32
153
    unsigned char Hoehe_Verstaerkung;     // Wert : 0-50
154
    unsigned char Hoehe_ACC_Wirkung;      // Wert : 0-250
155
    unsigned char Hoehe_HoverBand;        // Wert : 0-250
156
    unsigned char Hoehe_GPS_Z;            // Wert : 0-250
157
    unsigned char Hoehe_StickNeutralPoint;// Wert : 0-250
158
    unsigned char Stick_P;                // Wert : 1-6
159
    unsigned char Stick_D;                // Wert : 0-64
160
    unsigned char Gier_P;                 // Wert : 1-20
161
    unsigned char Gas_Min;                // Wert : 0-32
162
    unsigned char Gas_Max;                // Wert : 33-250
163
    unsigned char GyroAccFaktor;          // Wert : 1-64
164
    unsigned char KompassWirkung;         // Wert : 0-32
165
    unsigned char Gyro_P;                 // Wert : 10-250
166
    unsigned char Gyro_I;                 // Wert : 0-250
167
    unsigned char Gyro_D;                 // Wert : 0-250
168
    unsigned char Gyro_Gier_P;            // Wert : 10-250
169
    unsigned char Gyro_Gier_I;            // Wert : 0-250
170
    unsigned char Gyro_Stability;         // Wert : 0-16
171
    unsigned char UnterspannungsWarnung;  // Wert : 0-250
172
    unsigned char NotGas;                 // Wert : 0-250     //Gaswert bei Empängsverlust
173
    unsigned char NotGasZeit;             // Wert : 0-250     // Zeitbis auf NotGas geschaltet wird, wg. Rx-Problemen
174
    unsigned char Receiver;               // 0= Summensignal, 1= Spektrum, 2 =Jeti, 3=ACT DSL, 4=ACT S3D
175
    unsigned char I_Faktor;               // Wert : 0-250
176
    unsigned char UserParam1;             // Wert : 0-250
177
    unsigned char UserParam2;             // Wert : 0-250
178
    unsigned char UserParam3;             // Wert : 0-250
179
    unsigned char UserParam4;             // Wert : 0-250
180
    unsigned char ServoNickControl;       // Wert : 0-250     // Stellung des Servos
181
    unsigned char ServoNickComp;          // Wert : 0-250     // Einfluss Gyro/Servo
182
    unsigned char ServoNickMin;           // Wert : 0-250     // Anschlag
183
    unsigned char ServoNickMax;           // Wert : 0-250     // Anschlag
184
    //--- Seit V0.75
185
    unsigned char ServoRollControl;       // Wert : 0-250     // Stellung des Servos
186
    unsigned char ServoRollComp;          // Wert : 0-250
187
    unsigned char ServoRollMin;           // Wert : 0-250
188
    unsigned char ServoRollMax;           // Wert : 0-250
189
    //---
190
    unsigned char ServoNickRefresh;       // Speed of the Servo
191
    unsigned char ServoManualControlSpeed;//
192
    unsigned char CamOrientation;         //
193
    unsigned char Servo3;                        // Value or mapping of the Servo Output
194
    unsigned char Servo4;                                // Value or mapping of the Servo Output
195
    unsigned char Servo5;                                // Value or mapping of the Servo Output
196
    unsigned char LoopGasLimit;           // Wert: 0-250  max. Gas während Looping
197
    unsigned char LoopThreshold;          // Wert: 0-250  Schwelle für Stickausschlag
198
    unsigned char LoopHysterese;          // Wert: 0-250  Hysterese für Stickausschlag
199
    unsigned char AchsKopplung1;          // Wert: 0-250  Faktor, mit dem Gier die Achsen Roll und Nick koppelt (NickRollMitkopplung)
200
    unsigned char AchsKopplung2;          // Wert: 0-250  Faktor, mit dem Nick und Roll verkoppelt werden
201
    unsigned char CouplingYawCorrection;  // Wert: 0-250  Faktor, mit dem Nick und Roll verkoppelt werden
202
    unsigned char WinkelUmschlagNick;     // Wert: 0-250  180°-Punkt
203
    unsigned char WinkelUmschlagRoll;     // Wert: 0-250  180°-Punkt
204
    unsigned char GyroAccAbgleich;        // 1/k  (Koppel_ACC_Wirkung)
205
    unsigned char Driftkomp;
206
    unsigned char DynamicStability;
207
    unsigned char UserParam5;             // Wert : 0-250
208
    unsigned char UserParam6;             // Wert : 0-250
209
    unsigned char UserParam7;             // Wert : 0-250
210
    unsigned char UserParam8;             // Wert : 0-250
211
    //---Output ---------------------------------------------
212
    unsigned char J16Bitmask;             // for the J16 Output
213
    unsigned char J16Timing;              // for the J16 Output
214
    unsigned char J17Bitmask;             // for the J17 Output
215
    unsigned char J17Timing;              // for the J17 Output
216
    // seit version V0.75c
217
    unsigned char WARN_J16_Bitmask;       // for the J16 Output
218
    unsigned char WARN_J17_Bitmask;       // for the J17 Output
219
    //---NaviCtrl---------------------------------------------
220
    unsigned char NaviGpsModeControl;     // Parameters for the Naviboard
221
    unsigned char NaviGpsGain;
222
    unsigned char NaviGpsP;
223
    unsigned char NaviGpsI;
224
    unsigned char NaviGpsD;
225
    unsigned char NaviGpsPLimit;
226
    unsigned char NaviGpsILimit;
227
    unsigned char NaviGpsDLimit;
228
    unsigned char NaviGpsACC;
229
    unsigned char NaviGpsMinSat;
230
    unsigned char NaviStickThreshold;
231
    unsigned char NaviWindCorrection;
232
    unsigned char NaviSpeedCompensation;
233
    unsigned char NaviOperatingRadius;
234
    unsigned char NaviAngleLimitation;
235
    unsigned char NaviPH_LoginTime;
236
    //---Ext.Ctrl---------------------------------------------
237
    unsigned char ExternalControl;         // for serial Control
238
    //---CareFree---------------------------------------------
239
    unsigned char OrientationAngle;        // Where is the front-direction?
240
    unsigned char OrientationModeControl;  // switch for CareFree
241
    unsigned char MotorSafetySwitch;
242
    //------------------------------------------------
243
    unsigned char BitConfig;          // (war Loop-Cfg) Bitcodiert: 0x01=oben, 0x02=unten, 0x04=links, 0x08=rechts / wird getrennt behandelt
244
    unsigned char ServoCompInvert;    // //  0x01 = Nick, 0x02 = Roll   0 oder 1  // WICHTIG!!! am Ende lassen
245
    unsigned char ExtraConfig;        // bitcodiert
246
    char Name[12];
247
    unsigned char crc;                            // must be the last byte!
801 - 248
 };
249
 
250
struct s_MK_Mixer
251
{
252
    uint8_t Revision;
253
    char    Name[12];
254
    int8_t  Motor[16][4];
255
    uint8_t crc;
256
};
257
 
258
///////////////
259
// Navi-Ctrl //
260
///////////////
261
 
262
#define INVALID         0x00
263
#define NEWDATA         0x01
264
#define PROCESSED       0x02
265
 
266
#define NC_FLAG_FREE            0x01
267
#define NC_FLAG_PH              0x02
268
#define NC_FLAG_CH              0x04
269
#define NC_FLAG_RANGE_LIMIT     0x08
270
#define NC_FLAG_NOSERIALLINK    0x10
271
#define NC_FLAG_TARGET_REACHED  0x20
272
#define NC_FLAG_MANUAL_CONTROL  0x40
273
#define NC_FLAG_8               0x80
274
 
275
#define POINT_TYPE_WP   0
276
#define POINT_TYPE_POI  1
277
 
278
typedef struct
279
{
280
    int32_t Longitude;      // in 1E-7 deg
281
    int32_t Latitude;       // in 1E-7 deg
282
    int32_t Altitude;       // in mm
283
    uint8_t Status;         // validity of data
284
} __attribute__((packed)) GPS_Pos_t;
285
 
286
typedef struct
287
{
288
    uint16_t Distance;      // distance to target in dm
289
    int16_t Bearing;        // course to target in deg
290
}  __attribute__((packed)) GPS_PosDev_t;
291
 
292
typedef struct
293
{
294
    uint8_t      Version;               // version of the data structure
295
    GPS_Pos_t    CurrentPosition;               // see ubx.h for details
296
    GPS_Pos_t    TargetPosition;
297
    GPS_PosDev_t TargetPositionDeviation;
298
    GPS_Pos_t    HomePosition;
299
    GPS_PosDev_t HomePositionDeviation;
300
    uint8_t      WaypointIndex;         // index of current waypoints running from 0 to WaypointNumber-1
301
    uint8_t      WaypointNumber;                // number of stored waypoints
302
    uint8_t      SatsInUse;             // number of satellites used for position solution
303
    int16_t      Altimeter;             // hight according to air pressure
304
    int16_t      Variometer;            // climb(+) and sink(-) rate
305
    uint16_t     FlyingTime;            // in seconds
306
    uint8_t      UBat;                  // Battery Voltage in 0.1 Volts
307
    uint16_t     GroundSpeed;           // speed over ground in cm/s (2D)
308
    int16_t      Heading;               // current flight direction in ° as angle to north
309
    int16_t      CompassHeading;                // current compass value in °
310
    int8_t       AngleNick;             // current Nick angle in 1°
311
    int8_t       AngleRoll;             // current Rick angle in 1°
312
    uint8_t      RC_Quality;            // RC_Quality
313
    uint8_t      FCFlags;               // Flags from FC
314
    uint8_t      NCFlags;               // Flags from NC
315
    uint8_t      Errorcode;             // 0 --> okay
316
    uint8_t      OperatingRadius;               // current operation radius around the Home Position in m
317
    int16_t      TopSpeed;              // velocity in vertical direction in cm/s
318
    uint8_t      TargetHoldTime;                // time in s to stay at the given target, counts down to 0 if target has been reached
319
    uint8_t      RC_RSSI;               // Receiver signal strength (since version 2 added)
320
    int16_t      SetpointAltitude;                      // setpoint for altitude
321
    uint8_t      Gas;                                           // for future use
322
    uint16_t     Current;                                       // actual current in 0.1A steps
323
    uint16_t     UsedCapacity;                          // used capacity in mAh
324
 
325
} __attribute__((packed)) s_MK_NaviData;
326
 
327
typedef struct
328
{
329
    GPS_Pos_t Position;          // the gps position of the waypoint, see ubx.h for details
330
    int16_t   Heading;           // orientation, future implementation
331
    uint8_t   ToleranceRadius;   // in meters, if the MK is within that range around the target, then the next target is triggered
332
    uint8_t   HoldTime;          // in seconds, if the was once in the tolerance area around a WP, this time defies the delay before the next WP is triggered
333
    uint8_t   Event_Flag;        // future emplementation
334
    uint8_t   Index;             // to indentify different waypoints, workaround for bad communications PC <-> NC
335
    uint8_t   Type;              // type of Waypoint
336
    uint8_t   reserve[11];       // reserve
337
} __attribute__((packed)) s_MK_WayPoint;
338
 
339
#endif // MK_DATATYPES_H