Subversion Repositories Projects

Rev

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

Rev 305 Rev 306
Line 54... Line 54...
54
static const int SETTINGS_ID = 2;
54
static const int SETTINGS_ID = 2;
Line 55... Line 55...
55
 
55
 
Line 56... Line 56...
56
static const int SLEEP = 500000;
56
static const int SLEEP = 500000;
57
 
57
 
Line 58... Line 58...
58
static const QString QA_NAME = "QMK-Groundstation";
58
static const QString QA_NAME = "QMK-Groundstation";
59
static const QString QA_VERSION_NR = "0.7.8";
59
static const QString QA_VERSION_NR = "0.7.9";
60
 
60
 
61
#ifdef _BETA_
61
#ifdef _BETA_
Line 79... Line 79...
79
        #endif
79
        #endif
80
    #endif
80
    #endif
81
#endif
81
#endif
Line 82... Line 82...
82
 
82
 
83
 
83
 
84
static const QString QA_DATE = "02.03.2009";
84
static const QString QA_DATE = "15.03.2009";
85
static const QString QA_YEAR = "2008-2009";
85
static const QString QA_YEAR = "2008-2009";
Line 86... Line 86...
86
static const QString QA_AUTHOR = "Manuel Schrape";
86
static const QString QA_AUTHOR = "Manuel Schrape";
Line 159... Line 159...
159
    QString Longitude;
159
    QString Longitude;
160
    QString Latitude;
160
    QString Latitude;
161
    QString Altitude;
161
    QString Altitude;
162
};
162
};
Line -... Line 163...
-
 
163
 
-
 
164
struct sWayPoint
-
 
165
{
-
 
166
    double Longitude;
-
 
167
    double Latitude;
-
 
168
    int Time;
-
 
169
};
163
 
170