mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-09 20:46:07 +01:00
8897c441fa
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1363 ebee16cc-31ac-478f-84a7-5cbb03baadba
103 lines
4.0 KiB
C++
103 lines
4.0 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file uavobjectsinit.cpp
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
* @see The GNU Public License (GPL) Version 3
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
* @{
|
|
* @addtogroup UAVObjectsPlugin UAVObjects Plugin
|
|
* @{
|
|
*
|
|
* @note This is an automatically generated file.
|
|
* DO NOT modify manually.
|
|
*
|
|
* @brief The UAVUObjects GCS plugin
|
|
*****************************************************************************/
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#include "uavobjectsinit.h"
|
|
#include "actuatorcommand.h"
|
|
#include "actuatordesired.h"
|
|
#include "actuatorsettings.h"
|
|
#include "ahrscalibration.h"
|
|
#include "ahrsstatus.h"
|
|
#include "attitudeactual.h"
|
|
#include "attitudedesired.h"
|
|
#include "attituderaw.h"
|
|
#include "attitudesettings.h"
|
|
#include "baroaltitude.h"
|
|
#include "exampleobject1.h"
|
|
#include "exampleobject2.h"
|
|
#include "examplesettings.h"
|
|
#include "flightbatterystate.h"
|
|
#include "flightsituationactual.h"
|
|
#include "flighttelemetrystats.h"
|
|
#include "gcstelemetrystats.h"
|
|
#include "gpsposition.h"
|
|
#include "homelocation.h"
|
|
#include "manualcontrolcommand.h"
|
|
#include "manualcontrolsettings.h"
|
|
#include "navigationdesired.h"
|
|
#include "navigationsettings.h"
|
|
#include "objectpersistence.h"
|
|
#include "positionactual.h"
|
|
#include "stabilizationsettings.h"
|
|
#include "systemalarms.h"
|
|
#include "systemsettings.h"
|
|
#include "systemstats.h"
|
|
#include "telemetrysettings.h"
|
|
|
|
|
|
/**
|
|
* Function used to initialize the first instance of each object.
|
|
* This file is automatically updated by the UAVObjectGenerator.
|
|
*/
|
|
void UAVObjectsInitialize(UAVObjectManager* objMngr)
|
|
{
|
|
objMngr->registerObject( new ActuatorCommand() );
|
|
objMngr->registerObject( new ActuatorDesired() );
|
|
objMngr->registerObject( new ActuatorSettings() );
|
|
objMngr->registerObject( new AHRSCalibration() );
|
|
objMngr->registerObject( new AhrsStatus() );
|
|
objMngr->registerObject( new AttitudeActual() );
|
|
objMngr->registerObject( new AttitudeDesired() );
|
|
objMngr->registerObject( new AttitudeRaw() );
|
|
objMngr->registerObject( new AttitudeSettings() );
|
|
objMngr->registerObject( new BaroAltitude() );
|
|
objMngr->registerObject( new ExampleObject1() );
|
|
objMngr->registerObject( new ExampleObject2() );
|
|
objMngr->registerObject( new ExampleSettings() );
|
|
objMngr->registerObject( new FlightBatteryState() );
|
|
objMngr->registerObject( new FlightSituationActual() );
|
|
objMngr->registerObject( new FlightTelemetryStats() );
|
|
objMngr->registerObject( new GCSTelemetryStats() );
|
|
objMngr->registerObject( new GPSPosition() );
|
|
objMngr->registerObject( new HomeLocation() );
|
|
objMngr->registerObject( new ManualControlCommand() );
|
|
objMngr->registerObject( new ManualControlSettings() );
|
|
objMngr->registerObject( new NavigationDesired() );
|
|
objMngr->registerObject( new NavigationSettings() );
|
|
objMngr->registerObject( new ObjectPersistence() );
|
|
objMngr->registerObject( new PositionActual() );
|
|
objMngr->registerObject( new StabilizationSettings() );
|
|
objMngr->registerObject( new SystemAlarms() );
|
|
objMngr->registerObject( new SystemSettings() );
|
|
objMngr->registerObject( new SystemStats() );
|
|
objMngr->registerObject( new TelemetrySettings() );
|
|
|
|
}
|