QGCConfig.h 744 Bytes
Newer Older
lm's avatar
lm committed
1 2
#ifndef QGC_CONFIGURATION_H
#define QGC_CONFIGURATION_H
pixhawk's avatar
pixhawk committed
3

4
#include <QString>
5

pixhawk's avatar
pixhawk committed
6
/** @brief Polling interval in ms */
7
#define SERIAL_POLL_INTERVAL 4
pixhawk's avatar
pixhawk committed
8 9 10 11 12

/** @brief Heartbeat emission rate, in Hertz (times per second) */
#define MAVLINK_HEARTBEAT_DEFAULT_RATE 1
#define WITH_TEXT_TO_SPEECH 1

lm's avatar
lm committed
13
#define QGC_APPLICATION_NAME "QGroundControl"
Lorenz Meier's avatar
Lorenz Meier committed
14
#define QGC_APPLICATION_VERSION "v. 2.0.3 (beta)"
15 16 17 18

namespace QGC

{
19
const QString APPNAME = "QGROUNDCONTROL";
20 21
const QString ORG_NAME = "QGROUNDCONTROL.ORG"; //can be customized by forks to e.g. mycompany.com to maintain separate Settings for customized apps
const QString ORG_DOMAIN = "org.qgroundcontrol";//can be customized by forks
Lorenz Meier's avatar
Lorenz Meier committed
22
const int APPLICATIONVERSION = 203; // 2.0.3
23
}
lm's avatar
lm committed
24

lm's avatar
lm committed
25
#endif // QGC_CONFIGURATION_H