1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

OP-796 defaults USE_PATHPLANNER to enabled

This commit is contained in:
Alessio Morale 2013-01-14 01:28:33 +01:00
parent 9a10bd85bd
commit de44495055
3 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,8 @@ include(openpilotgcs.pri)
TEMPLATE = subdirs
CONFIG += ordered
DEFINES += USE_PATHPLANNER
SUBDIRS = src share copydata
unix:!macx:!isEmpty(copydata):SUBDIRS += bin

View File

@ -54,7 +54,7 @@
#define sign(x) ((x < 0) ? -1 : 1)
// Uncomment this to enable 6 point calibration on the accels
//#define SIX_POINT_CAL_ACCEL
#define SIX_POINT_CAL_ACCEL
const double ConfigRevoWidget::maxVarValue = 0.1;

View File

@ -1,5 +1,9 @@
QT += xml
TEMPLATE = lib
PATHPLANNER {
DEFINES += USE_PATHPLANNER
}
TARGET = OPMapGadget
include(../../openpilotgcsplugin.pri)
include(../../plugins/coreplugin/coreplugin.pri)