1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

GCS/uavobjects: flightbatterystate.cpp/h missing and therefore commented out for now.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@788 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
ephy 2010-06-16 17:03:16 +00:00 committed by ephy
parent a8fac007d7
commit cf55ff673b
2 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,6 @@
TEMPLATE = lib
TARGET = UAVObjects
DEFINES += UAVOBJECTS_LIBRARY
include(../../openpilotgcsplugin.pri)
include(uavobjects_dependencies.pri)
HEADERS += uavobjects_global.h \
@ -31,7 +32,7 @@ HEADERS += uavobjects_global.h \
actuatordesired.h \
actuatorcommand.h \
positionactual.h \
flightbatterystate.h
# flightbatterystate.h
SOURCES += uavobject.cpp \
uavmetaobject.cpp \
uavobjectmanager.cpp \
@ -60,6 +61,5 @@ SOURCES += uavobject.cpp \
actuatordesired.cpp \
actuatorcommand.cpp \
positionactual.cpp \
flightbatterystate.cpp
DEFINES += UAVOBJECTS_LIBRARY
# flightbatterystate.cpp
OTHER_FILES += UAVObjects.pluginspec

View File

@ -37,11 +37,10 @@
#include "attitudeactual.h"
#include "attitudedesired.h"
#include "attitudesettings.h"
#include "flightbatterystate.h"
//#include "flightbatterystate.h"
#include "exampleobject1.h"
#include "exampleobject2.h"
#include "examplesettings.h"
#include "flightbatterystate.h"
#include "flighttelemetrystats.h"
#include "gcstelemetrystats.h"
#include "manualcontrolcommand.h"
@ -68,11 +67,11 @@ void UAVObjectsInitialize(UAVObjectManager* objMngr)
objMngr->registerObject( new AttitudeActual() );
objMngr->registerObject( new AttitudeDesired() );
objMngr->registerObject( new AttitudeSettings() );
objMngr->registerObject( new FlightBatteryState() );
// objMngr->registerObject( new FlightBatteryState() );
objMngr->registerObject( new ExampleObject1() );
objMngr->registerObject( new ExampleObject2() );
objMngr->registerObject( new ExampleSettings() );
objMngr->registerObject( new FlightBatteryState() );
// objMngr->registerObject( new FlightBatteryState() );
objMngr->registerObject( new FlightTelemetryStats() );
objMngr->registerObject( new GCSTelemetryStats() );
objMngr->registerObject( new ManualControlCommand() );