Subversion Repositories Projects

Rev

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

Rev 167 Rev 199
Line 37... Line 37...
37
static const int ADDRESS_NC     = 2;
37
static const int ADDRESS_NC     = 2;
38
static const int ADDRESS_MK3MAG = 3;
38
static const int ADDRESS_MK3MAG = 3;
Line 39... Line 39...
39
 
39
 
Line -... Line 40...
-
 
40
static const int SETTINGS_ID = 2;
-
 
41
 
40
static const int SETTINGS_ID = 2;
42
static const int Sleep = 500000;
41
 
43
 
42
static const QString QA_NAME = "QMK-Groundstation";
44
static const QString QA_NAME = "QMK-Groundstation";
43
static const QString QA_VERSION = "0.5.8c";
45
static const QString QA_VERSION = "0.6.3";
44
static const QString QA_DATE = "14.12.2008";
46
static const QString QA_DATE = "03.01.2009";
45
static const QString QA_YEAR = "2008";
47
static const QString QA_YEAR = "2008-2009";
Line 46... Line 48...
46
static const QString QA_AUTHOR = "Manuel Schrape";
48
static const QString QA_AUTHOR = "Manuel Schrape";
47
static const QString QA_EMAIL  = "manuel.schrape@gmx.de";
49
static const QString QA_EMAIL  = "manuel.schrape@gmx.de";
Line 70... Line 72...
70
static const int MaxTickerEvents = 5;
72
static const int MaxTickerEvents = 5;
Line 71... Line 73...
71
 
73
 
72
static const int MaxAnalog    = 32;
74
static const int MaxAnalog    = 32;
Line -... Line 75...
-
 
75
static const int MaxPlot      = 50000;
-
 
76
 
73
static const int MaxPlot      = 50000;
77
static const int MaxNaviPos   = 2000;
74
 
78
 
75
struct sMode
79
struct sMode
76
{
80
{
77
    int ID;
81
    int ID;
Line 87... Line 91...
87
struct sRxData
91
struct sRxData
88
{
92
{
89
    char *Input;
93
    char *Input;
90
    QString String;
94
    QString String;
91
    int Decode[150];
95
    int Decode[150];
-
 
96
    int DecLen;
-
 
97
};
-
 
98
 
-
 
99
struct sGPS_Pos
-
 
100
{
-
 
101
    long Longitude;
-
 
102
    long Latitude;
-
 
103
    long Altitude;
-
 
104
};
-
 
105
 
-
 
106
struct sNaviData
-
 
107
{
-
 
108
    sGPS_Pos Current;
-
 
109
    sGPS_Pos Target;
-
 
110
    sGPS_Pos Home;
-
 
111
 
-
 
112
 
-
 
113
    long Longitude;
-
 
114
    long Latitude;
-
 
115
    long Altitude;
-
 
116
};
-
 
117
 
-
 
118
struct sNaviString
-
 
119
{
-
 
120
    QString Longitude;
-
 
121
    QString Latitude;
-
 
122
    QString Altitude;
92
};
123
};
Line 93... Line 124...
93
 
124