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.
15 lines
403 B
15 lines
403 B
#ifndef QGC_CONFIGURATION_H |
|
#define QGC_CONFIGURATION_H |
|
|
|
#include <QString> |
|
|
|
/** @brief Polling interval in ms */ |
|
#define SERIAL_POLL_INTERVAL 4 |
|
|
|
#define WITH_TEXT_TO_SPEECH 1 |
|
|
|
// If you need to make an incompatible changes to stored settings, bump this version number |
|
// up by 1. This will caused store settings to be cleared on next boot. |
|
#define QGC_SETTINGS_VERSION 7 |
|
|
|
#endif // QGC_CONFIGURATION_H
|
|
|