Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 249 → Rev 250

/QMK-Groundstation/trunk/Forms/mktool.h
41,7 → 41,8
#include "wdg_Settings.h"
#include "dlg_LCD.h"
 
#include "../SerialPort/ManageSerialPort.h"
//#include "../SerialPort/ManageSerialPort.h"
#include "../Classes/cConnection.h"
#include "../Classes/cSettings.h"
#include "../Classes/cServer.h"
#include "../Classes/cQMK_Server.h"
48,6 → 49,7
#include "../Classes/cAttitude.h"
#include "../Classes/cSpeedMeter.h"
#include "../Logger/Logger.h"
#include "../typedefs.h"
 
class QextSerialPort;
 
66,7 → 68,8
bool AllowSend;
 
// Object für Serielport
ManageSerialPort *serialPort;
// ManageSerialPort *serialPort;
cConnection *Conn;
 
// Settings-Object (Programmeinstellungen)
cSettings *Settings;
148,12 → 151,8
void config_Plot();
 
void new_NaviData(sRxData RX);
// void new_Debugdata();
void parse_TargetKML();
 
// Daten Senden, Empfangen und verarbeiten
void send_Data(char CMD, int Address, char Data[150],unsigned int Length, bool Resend = true);
void new_RXData(sRxData RX);
 
// Debugdaten anzeigen und speichern.
void show_DebugData();
void update_Log();
166,6 → 165,8
void slot_QMKS_Connected();
void slot_QMKS_Disconnected(int Error);
 
void slot_showTerminal(int Typ, QString Text);
 
void slot_ac_Hardware();
void slot_rb_Hardware();
 
185,7 → 186,9
void slot_ac_GetLabels();
void slot_ac_Motortest();
void slot_ac_LCD();
 
void slot_pb_HexFile();
void slot_pb_SendWaypoint();
 
// Default-Ticker
void slot_Ticker();
201,7 → 204,7
void slot_UpdateShell();
 
// Seriell-Port Slots
void slot_newDataReceived(const QByteArray &dataReceived);
void slot_newData(sRxData RX);
void slot_OpenPort();
 
void slot_TabChanged(int Tab);