Subversion Repositories Projects

Rev

Rev 167 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
158 KeyOz 1
/***************************************************************************
2
 *   Copyright (C) 2008 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 GLOBAL_H
20
#define GLOBAL_H
21
 
22
#include <QString>
23
#include <QSize>
24
#include <QPoint>
25
#include <QColor>
26
#include <QBitArray>
27
 
28
#include "Parameter_Positions.h"
29
 
159 KeyOz 30
// Version des Seriellen Protokoll
31
static const int VERSION_SERIAL_MAJOR = 10;
32
static const int VERSION_SERIAL_MINOR = 0;
158 KeyOz 33
 
159 KeyOz 34
// Basis-Addressen der verschiedenen Hardware
35
static const int ADDRESS_ALL    = 0;
36
static const int ADDRESS_FC     = 1;
37
static const int ADDRESS_NC     = 2;
38
static const int ADDRESS_MK3MAG = 3;
39
 
162 KeyOz 40
static const int SETTINGS_ID = 2;
159 KeyOz 41
 
199 KeyOz 42
static const int Sleep = 500000;
43
 
158 KeyOz 44
static const QString QA_NAME = "QMK-Groundstation";
199 KeyOz 45
static const QString QA_VERSION = "0.6.3";
46
static const QString QA_DATE = "03.01.2009";
47
static const QString QA_YEAR = "2008-2009";
158 KeyOz 48
static const QString QA_AUTHOR = "Manuel Schrape";
49
static const QString QA_EMAIL  = "manuel.schrape@gmx.de";
50
 
51
static const QString QA_ABOUT =
52
    "<HTML>"
53
    "<p><b><font size=8>" + QA_NAME + "</font></b></p>"
54
    "<br />"
55
    "Version " + QA_VERSION + " - " + QA_DATE + ""
56
    "<br /><br />"
57
    "(C) " + QA_YEAR + " by " + QA_AUTHOR + " - "
58
    "<a href=\"mailto:" + QA_EMAIL + "\">" + QA_EMAIL + "</a> <br /><br />"
59
    "Groundstation-Programm f&uuml;r den Mikrokopter zum <br>Parametrieren und Debug-Werte anzeigen, aufzeichnen & Visualisieren."
60
    "<br /><br /> Dieses Programm wird unter den Bedingungen der GPL v2 ver&ouml;ffentlicht."
61
    "</HTML>";
62
 
162 KeyOz 63
static const QString Def_AnalogNames[] = {"Integral Nick", "Integral Roll", "ACC Nick", "ACC Roll", "Gyro Gier", "Hoehen-Wert", "ACC Z", "GAS", "Kompass-Value", "Spannung", "Empfang", "Ersatzkompass", "Motor Vorne", "Motor Hinten", "Motor Links", "Motor Rechts", "Analog 16", "Distance", "OSD-Bar", "MK3Mag", "Servo", "Nick", "Roll", "Analog 23", "Analog 24",  "Analog 25",  "Analog 26",  "Kalman Max",  "Analog 28",  "Kalman K", "GPS Nick", "GPS Roll"};
158 KeyOz 64
 
65
static const QRgb Def_Colors[] = {0x00FF0000, 0x0000FF00, 0x00FFFF00, 0x000000FF, 0x00FF00FF, 0x0000FFFF, 0x00FFFFFF, 0x00660000, 0x00006600, 0x00666600, 0x00000066, 0x00660066, 0x000066, 0x00666666, 0x00990000, 0x00009900, 0x00999900, 0x00000099, 0x00990099, 0x00009999, 0x00999999, 0x00CC0000, 0x0000CC00, 0x00CCCC00, 0x000000CC, 0x00CC00CC, 0x0000CCCC, 0x00CCCCCC, 0x0066FF99, 0x009966FF, 0x00FF9966, 0x0099FF66};
66
 
67
static const bool Def_Plot_Show[] = {1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0};
68
static const bool Def_Log[]       = {1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0};
69
 
162 KeyOz 70
static const QString HardwareType[] = {"Default", "FlightCtrl", "NaviCtrl", "MK3Mag"};
158 KeyOz 71
 
72
static const int MaxTickerEvents = 5;
73
 
74
static const int MaxAnalog    = 32;
75
static const int MaxPlot      = 50000;
76
 
199 KeyOz 77
static const int MaxNaviPos   = 2000;
78
 
158 KeyOz 79
struct sMode
80
{
81
    int ID;
159 KeyOz 82
    int VERSION_MAJOR;
83
    int VERSION_MINOR;
84
    int VERSION_PATCH;
85
    int VERSION_SERIAL_MAJOR;
86
    int VERSION_SERIAL_MINOR;
158 KeyOz 87
    QString Hardware;
88
    QString Version;
89
};
90
 
91
struct sRxData
92
{
93
    char *Input;
94
    QString String;
95
    int Decode[150];
199 KeyOz 96
    int DecLen;
158 KeyOz 97
};
98
 
199 KeyOz 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;
123
};
124
 
158 KeyOz 125
#endif