1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-17 02:52:12 +01:00

OP-185 Flight/GCS update the uavobjects.pro and uavobjectsinit.cpp with the firmware IAP objects

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1897 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
kokomojoe 2010-10-06 05:33:05 +00:00 committed by kokomojoe
parent 946283d67e
commit 86338404ed
2 changed files with 6 additions and 2 deletions

View File

@ -46,7 +46,8 @@ HEADERS += uavobjects_global.h \
velocityactual.h \
guidancesettings.h \
positiondesired.h \
lesstabilizationsettings.h
lesstabilizationsettings.h \
firmwareiapobj.h
SOURCES += uavobject.cpp \
uavmetaobject.cpp \
@ -90,5 +91,6 @@ SOURCES += uavobject.cpp \
velocityactual.cpp \
guidancesettings.cpp \
positiondesired.cpp \
lesstabilizationsettings.cpp
lesstabilizationsettings.cpp \
firmwareiapobj.cpp
OTHER_FILES += UAVObjects.pluginspec

View File

@ -43,6 +43,7 @@
#include "exampleobject1.h"
#include "exampleobject2.h"
#include "examplesettings.h"
#include "firmwareiapobj.h"
#include "flightbatterystate.h"
#include "flighttelemetrystats.h"
#include "gcstelemetrystats.h"
@ -87,6 +88,7 @@ void UAVObjectsInitialize(UAVObjectManager* objMngr)
objMngr->registerObject( new ExampleObject1() );
objMngr->registerObject( new ExampleObject2() );
objMngr->registerObject( new ExampleSettings() );
objMngr->registerObject( new FirmwareIAPObj() );
objMngr->registerObject( new FlightBatteryState() );
objMngr->registerObject( new FlightTelemetryStats() );
objMngr->registerObject( new GCSTelemetryStats() );