You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
0 B
26 lines
0 B
14 years ago
|
#ifndef QGC_CONFIGURATION_H
|
||
|
#define QGC_CONFIGURATION_H
|
||
15 years ago
|
|
||
14 years ago
|
#include <QString>
|
||
14 years ago
|
|
||
15 years ago
|
/** @brief Polling interval in ms */
|
||
11 years ago
|
#define SERIAL_POLL_INTERVAL 4
|
||
15 years ago
|
|
||
|
/** @brief Heartbeat emission rate, in Hertz (times per second) */
|
||
|
#define MAVLINK_HEARTBEAT_DEFAULT_RATE 1
|
||
|
#define WITH_TEXT_TO_SPEECH 1
|
||
|
|
||
15 years ago
|
#define QGC_APPLICATION_NAME "QGroundControl"
|
||
11 years ago
|
#define QGC_APPLICATION_VERSION "v. 2.0.3 (beta)"
|
||
14 years ago
|
|
||
|
namespace QGC
|
||
|
|
||
|
{
|
||
14 years ago
|
const QString APPNAME = "QGROUNDCONTROL";
|
||
12 years ago
|
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
|
||
11 years ago
|
const int APPLICATIONVERSION = 203; // 2.0.3
|
||
14 years ago
|
}
|
||
15 years ago
|
|
||
14 years ago
|
#endif // QGC_CONFIGURATION_H
|