Rev 449 | 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 | |||
20 | |||
21 | #ifndef MKTOOL_H |
||
22 | #define MKTOOL_H |
||
23 | |||
24 | #include <QMainWindow> |
||
25 | #include <QSettings> |
||
26 | #include <QString> |
||
27 | #include <QTimer> |
||
28 | #include <QComboBox> |
||
29 | #include <QIcon> |
||
30 | #include <QProcess> |
||
31 | |||
32 | #include <qwt_plot_curve.h> |
||
33 | #include <qwt_plot_grid.h> |
||
34 | #include <qwt_legend.h> |
||
35 | #include <qwt_plot.h> |
||
227 | KeyOz | 36 | #include <qwt_compass.h> |
37 | #include <qwt_compass_rose.h> |
||
38 | #include <qwt_dial_needle.h> |
||
39 | |||
158 | KeyOz | 40 | #include "ui_mktool.h" |
167 | KeyOz | 41 | #include "wdg_Settings.h" |
227 | KeyOz | 42 | #include "dlg_LCD.h" |
305 | KeyOz | 43 | #include "dlg_Map.h" |
307 | KeyOz | 44 | #include "dlg_MotorMixer.h" |
158 | KeyOz | 45 | |
227 | KeyOz | 46 | #include "../Classes/cSettings.h" |
306 | KeyOz | 47 | #include "../Classes/cKML_Server.h" |
227 | KeyOz | 48 | #include "../Classes/cQMK_Server.h" |
49 | #include "../Classes/cAttitude.h" |
||
50 | #include "../Classes/cSpeedMeter.h" |
||
239 | Brean | 51 | #include "../Logger/Logger.h" |
250 | KeyOz | 52 | #include "../typedefs.h" |
158 | KeyOz | 53 | |
391 | Brean | 54 | //quadcopter lib stuff |
440 | Brean | 55 | #include "../libMK/Handler.h" |
56 | #include "../libMK/Communication.h" |
||
449 | Brean | 57 | #include "../libMK/QTSerialCommunication.h" |
391 | Brean | 58 | |
158 | KeyOz | 59 | class QextSerialPort; |
60 | |||
61 | class MKTool : public QMainWindow, public Ui::dlg_mktool_UI |
||
62 | { |
||
63 | Q_OBJECT |
||
64 | |||
65 | public: |
||
66 | MKTool(); |
||
67 | ~MKTool(); |
||
68 | |||
69 | private: |
||
442 | Brean | 70 | // data-exchange from the MK |
440 | Brean | 71 | KopterData * data; |
158 | KeyOz | 72 | |
442 | Brean | 73 | // data-handler to send commands to MK |
396 | Brean | 74 | Handler *handler; |
75 | |||
442 | Brean | 76 | // connect to MK/disconnect from MK |
396 | Brean | 77 | Communication *com; |
78 | |||
442 | Brean | 79 | // settings object (program configuration) |
158 | KeyOz | 80 | cSettings *Settings; |
81 | |||
442 | Brean | 82 | // settings widget (FC settings) |
167 | KeyOz | 83 | wdg_Settings *f_Settings; |
84 | |||
442 | Brean | 85 | // HTTP server object for KML files |
306 | KeyOz | 86 | cKML_Server *KML_Server; |
199 | KeyOz | 87 | |
442 | Brean | 88 | // QMK-serverobjekt |
272 | KeyOz | 89 | cQMK_Server *QMK_Server; |
227 | KeyOz | 90 | |
442 | Brean | 91 | // LCD dialog |
227 | KeyOz | 92 | dlg_LCD *f_LCD; |
93 | |||
442 | Brean | 94 | // MotorMixer dialog |
307 | KeyOz | 95 | dlg_MotorMixer *f_MotorMixer; |
96 | |||
442 | Brean | 97 | // Map dialog |
305 | KeyOz | 98 | dlg_Map *f_Map; |
99 | |||
442 | Brean | 100 | //TCP socket - needed by QMK server |
227 | KeyOz | 101 | QTcpSocket *TcpSocket; |
102 | |||
441 | Brean | 103 | //FIXME: replace ticker with something else |
158 | KeyOz | 104 | // Default-Ticker |
441 | Brean | 105 | //QTimer *Ticker; |
158 | KeyOz | 106 | |
441 | Brean | 107 | // copy of the tabs from the main widget |
227 | KeyOz | 108 | QWidget *TabWidgets[7]; |
158 | KeyOz | 109 | |
441 | Brean | 110 | // analog names (label) |
158 | KeyOz | 111 | QLabel *lb_Analog[MaxAnalog]; |
112 | |||
441 | Brean | 113 | // analog values (line edit) |
114 | QLineEdit *le_Analog[MaxAnalog]; |
||
115 | |||
158 | KeyOz | 116 | // Plots für die Analogwerte |
441 | Brean | 117 | QwtPlotCurve *Plot[MaxAnalog]; |
158 | KeyOz | 118 | |
119 | // Datenspeicher für die Plots |
||
120 | double aData[MaxAnalog][MaxPlot]; |
||
121 | double aID[MaxPlot]; |
||
122 | int NextPlot; |
||
123 | |||
227 | KeyOz | 124 | AttitudeIndicator *Attitude; |
125 | cSpeedMeter * SpeedMeter; |
||
126 | |||
158 | KeyOz | 127 | // Ticker-Event-Array |
441 | Brean | 128 | //FIXME: move ticker to QTCommunication |
129 | //bool TickerEvent[MaxTickerEvents]; |
||
130 | //bool TickerDiv; |
||
158 | KeyOz | 131 | |
442 | Brean | 132 | // logger for CVS, MySQL and others |
239 | Brean | 133 | Logger * logger; |
158 | KeyOz | 134 | |
442 | Brean | 135 | // software update |
162 | KeyOz | 136 | QProcess *Update; |
158 | KeyOz | 137 | |
199 | KeyOz | 138 | // FC-Settings |
139 | int FCSettings[MaxParameter]; |
||
158 | KeyOz | 140 | |
442 | Brean | 141 | // initialize program |
158 | KeyOz | 142 | void init_GUI(); |
143 | void init_Objects(); |
||
144 | void init_Connections(); |
||
145 | void init_Arrays(); |
||
146 | void init_Plot(); |
||
306 | KeyOz | 147 | void init_Cockpit(); |
158 | KeyOz | 148 | |
442 | Brean | 149 | // plot data |
158 | KeyOz | 150 | void update_Plot(); |
151 | void config_Plot(); |
||
152 | |||
449 | Brean | 153 | // void new_NaviData(sRxData RX); |
250 | KeyOz | 154 | void parse_TargetKML(); |
199 | KeyOz | 155 | |
442 | Brean | 156 | // show and save debug/log |
158 | KeyOz | 157 | void show_DebugData(); |
239 | Brean | 158 | void update_Log(); |
158 | KeyOz | 159 | |
442 | Brean | 160 | // save program settings |
167 | KeyOz | 161 | void set_Preferences(); |
158 | KeyOz | 162 | |
163 | private slots: |
||
227 | KeyOz | 164 | void slot_QMKS_Connect(); |
165 | void slot_QMKS_Connected(); |
||
166 | void slot_QMKS_Disconnected(int Error); |
||
167 | |||
306 | KeyOz | 168 | void slot_set_Settings(cSettings *t_Settings); |
169 | |||
170 | void slot_MAP_SetTarget(sWayPoint Target); |
||
358 | KeyOz | 171 | void slot_MAP_SetWayPoints(QList<sWayPoint> l_WayPoints); |
306 | KeyOz | 172 | |
358 | KeyOz | 173 | |
250 | KeyOz | 174 | void slot_showTerminal(int Typ, QString Text); |
175 | |||
199 | KeyOz | 176 | void slot_ac_Hardware(); |
177 | void slot_rb_Hardware(); |
||
178 | |||
179 | void slot_ac_StartServer(); |
||
180 | |||
181 | void slot_Test(); |
||
182 | |||
158 | KeyOz | 183 | void slot_ac_Config(); |
159 | KeyOz | 184 | void slot_ac_Preferences(); |
158 | KeyOz | 185 | void slot_ac_StartPlotter(); |
186 | void slot_ac_View(); |
||
199 | KeyOz | 187 | void slot_ac_FastDebug(); |
188 | void slot_ac_NoDebug(); |
||
189 | void slot_ac_FastNavi(); |
||
190 | void slot_ac_NoNavi(); |
||
158 | KeyOz | 191 | void slot_ac_About(); |
192 | void slot_ac_GetLabels(); |
||
193 | void slot_ac_Motortest(); |
||
227 | KeyOz | 194 | void slot_ac_LCD(); |
305 | KeyOz | 195 | void slot_ac_Map(); |
307 | KeyOz | 196 | void slot_ac_MotorMixer(); |
250 | KeyOz | 197 | |
166 | KeyOz | 198 | void slot_pb_HexFile(); |
358 | KeyOz | 199 | void slot_pb_SendTarget(); |
158 | KeyOz | 200 | |
201 | // Default-Ticker |
||
442 | Brean | 202 | //FIXME: put this in libMK/QTCommunication.cpp |
203 | //void slot_Ticker(); |
||
158 | KeyOz | 204 | |
442 | Brean | 205 | // LCD page up / down |
159 | KeyOz | 206 | void slot_LCD_UP(); |
207 | void slot_LCD_DOWN(); |
||
208 | |||
442 | Brean | 209 | void slot_Motortest(sMotorData p_Motor); |
158 | KeyOz | 210 | |
199 | KeyOz | 211 | // Firmeware-Update |
158 | KeyOz | 212 | void slot_pb_Update(); |
213 | void slot_UpdateShell(); |
||
214 | |||
215 | // Seriell-Port Slots |
||
449 | Brean | 216 | // void slot_newData(sRxData RX); |
500 | Brean | 217 | //connect to serial port |
218 | void slot_serial_connect(); |
||
158 | KeyOz | 219 | |
220 | void slot_TabChanged(int Tab); |
||
221 | |||
239 | Brean | 222 | void slot_RecordLog(); |
158 | KeyOz | 223 | |
224 | void slot_ScrollPlot(int Pos); |
||
225 | |||
199 | KeyOz | 226 | // FC-Settings lesen / Schreiben |
227 | void slot_GetFCSettings(); |
||
228 | void slot_SetFCSettings(); |
||
158 | KeyOz | 229 | }; |
230 | |||
231 | #endif |