Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 226 → Rev 227

/QMK-Groundstation/trunk/global.h
27,6 → 27,20
 
#include "Parameter_Positions.h"
 
#ifdef _WIN32_
static const QString OS_PORT = "COM1";
#else
static const QString OS_PORT = "/dev/ttyUSB0";
#endif
 
//#define _EEEPC_
 
#ifdef _EEEPC_
static const int MeterSize = 125;
#else
static const int MeterSize = 160;
#endif
 
// Version des Seriellen Protokoll
static const int VERSION_SERIAL_MAJOR = 10;
static const int VERSION_SERIAL_MINOR = 0;
39,11 → 53,11
 
static const int SETTINGS_ID = 2;
 
static const int Sleep = 500000;
static const int SLEEP = 500000;
 
static const QString QA_NAME = "QMK-Groundstation";
static const QString QA_VERSION = "0.6.3";
static const QString QA_DATE = "03.01.2009";
static const QString QA_VERSION = "0.7.0";
static const QString QA_DATE = "24.01.2009";
static const QString QA_YEAR = "2008-2009";
static const QString QA_AUTHOR = "Manuel Schrape";
static const QString QA_EMAIL = "manuel.schrape@gmx.de";