configuration.h 645 Bytes
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3
#ifndef CONFIGURATION_H
#define CONFIGURATION_H

4
#include "mavlink.h"
5
#include <QString>
6

pixhawk's avatar
pixhawk committed
7
/** @brief Polling interval in ms */
8
#ifdef MAVLINK_ENABLED_SLUGS
9
#define SERIAL_POLL_INTERVAL 7
10
#else
11
#define SERIAL_POLL_INTERVAL 7
12
#endif
pixhawk's avatar
pixhawk committed
13 14 15 16 17 18

/** @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
19
#define QGC_APPLICATION_NAME "QGroundControl"
20
#define QGC_APPLICATION_VERSION "v. 0.8.3 (Alpha RC7)"
21 22 23 24

namespace QGC

{
25 26 27
const QString APPNAME = "QGROUNDCONTROL";
const QString COMPANYNAME = "OPENMAV";
const int APPLICATIONVERSION = 83; // 0.8.0
28
}
lm's avatar
lm committed
29

pixhawk's avatar
pixhawk committed
30
#endif // CONFIGURATION_H