mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-13 20:48:42 +01:00
82 lines
3.1 KiB
C++
82 lines
3.1 KiB
C++
|
/**
|
||
|
******************************************************************************
|
||
|
*
|
||
|
* @file exampleobject.cpp
|
||
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||
|
* @brief Implementation of the ExampleObject object. This file has been
|
||
|
* automatically generated by the UAVObjectGenerator.
|
||
|
*
|
||
|
* @note Object definition file: exampleobject.xml.
|
||
|
* This is an automatically generated file.
|
||
|
* DO NOT modify manually.
|
||
|
*
|
||
|
* @see The GNU Public License (GPL) Version 3
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
/*
|
||
|
* 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 "exampleobject.h"
|
||
|
|
||
|
const QString ExampleObject::NAME = QString("ExampleObject");
|
||
|
|
||
|
ExampleObject::ExampleObject(): UAVDataObject(OBJID, SINGLEINST, NAME)
|
||
|
{
|
||
|
// Create fields
|
||
|
QList<UAVObjectField*> fields;
|
||
|
fields.append(new UAVObjectField(QString("field1"), QString("unit1"), UAVObjectField::FIELDTYPE_INT8, 1));
|
||
|
fields.append(new UAVObjectField(QString("field2"), QString("unit2"), UAVObjectField::FIELDTYPE_INT16, 1));
|
||
|
fields.append(new UAVObjectField(QString("field3"), QString("unit3"), UAVObjectField::FIELDTYPE_FLOAT32, 4));
|
||
|
fields.append(new UAVObjectField(QString("field4"), QString("unit4"), UAVObjectField::FIELDTYPE_INT32, 1));
|
||
|
|
||
|
// Initialize object
|
||
|
initializeFields(fields, (quint8*)&data, NUMBYTES);
|
||
|
}
|
||
|
|
||
|
UAVObject::Metadata ExampleObject::getDefaultMetadata()
|
||
|
{
|
||
|
UAVObject::Metadata metadata;
|
||
|
metadata.gcsTelemetryAcked = 1;
|
||
|
metadata.gcsTelemetryUpdateMode = UAVObject::UPDATEMODE_PERIODIC;
|
||
|
metadata.gcsTelemetryUpdatePeriod = 100;
|
||
|
metadata.flightTelemetryAcked = 1;
|
||
|
metadata.flightTelemetryUpdateMode = UAVObject::UPDATEMODE_ONCHANGE;
|
||
|
metadata.flightTelemetryUpdatePeriod = 0;
|
||
|
metadata.loggingUpdateMode = UAVObject::UPDATEMODE_NEVER;
|
||
|
metadata.loggingUpdatePeriod = 0;
|
||
|
return metadata;
|
||
|
}
|
||
|
|
||
|
ExampleObject::DataFields ExampleObject::getData()
|
||
|
{
|
||
|
QMutexLocker locker(mutex);
|
||
|
return data;
|
||
|
}
|
||
|
|
||
|
void ExampleObject::setData(DataFields& data)
|
||
|
{
|
||
|
QMutexLocker locker(mutex);
|
||
|
this->data = data;
|
||
|
emit objectUpdatedAuto(this); // trigger object updated event
|
||
|
emit objectUpdated(this);
|
||
|
}
|
||
|
|
||
|
UAVDataObject* ExampleObject::clone(quint32 instID)
|
||
|
{
|
||
|
ExampleObject* obj = new ExampleObject();
|
||
|
obj->initialize(instID, this->getMetaObject());
|
||
|
return obj;
|
||
|
}
|