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

4 5
#include "mavlink.h"

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

/** @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
18
#define QGC_APPLICATION_NAME "QGroundControl"
19
#define QGC_APPLICATION_VERSION "v. 0.8.0 (Beta)"
lm's avatar
lm committed
20

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