2010-04-01 04:00:19 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2010-04-07 05:11:13 +02:00
|
|
|
* @file uavobjectfieldint8.h
|
2010-04-01 04:00:19 +02:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009.
|
|
|
|
* @brief
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
* @defgroup uavobjects_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
|
|
|
|
*/
|
2010-04-07 05:11:13 +02:00
|
|
|
#ifndef UAVOBJECTFIELDINT8_H
|
|
|
|
#define UAVOBJECTFIELDINT8_H
|
2010-04-01 04:00:19 +02:00
|
|
|
|
|
|
|
#include "uavobjects_global.h"
|
|
|
|
#include "uavobjectfield.h"
|
|
|
|
#include <QtEndian>
|
|
|
|
|
2010-04-07 05:11:13 +02:00
|
|
|
// Note: This class could be implemented as a template but due to limitations of the Qt
|
|
|
|
// plugins it not possible.
|
|
|
|
|
|
|
|
class UAVOBJECTS_EXPORT UAVObjectFieldInt8: public UAVObjectField
|
2010-04-01 04:00:19 +02:00
|
|
|
{
|
2010-04-07 05:11:13 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2010-04-01 04:00:19 +02:00
|
|
|
public:
|
2010-04-07 05:11:13 +02:00
|
|
|
UAVObjectFieldInt8(const QString& name, const QString& units, quint32 numElements);
|
2010-04-21 04:50:51 +02:00
|
|
|
UAVObjectFieldInt8(const QString& name, const QString& units, const QStringList& elementNames);
|
2010-04-01 04:00:19 +02:00
|
|
|
void initializeValues();
|
|
|
|
qint32 pack(quint8* dataOut);
|
|
|
|
qint32 unpack(const quint8* dataIn);
|
|
|
|
double getDouble(quint32 index = 0);
|
|
|
|
void setDouble(double value, quint32 index = 0);
|
|
|
|
quint32 getNumBytesElement();
|
2010-04-07 05:11:13 +02:00
|
|
|
qint8 getValue(quint32 index = 0);
|
|
|
|
void setValue(qint8 value, quint32 index = 0);
|
2010-04-01 04:00:19 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
quint32 numBytesPerElement;
|
|
|
|
};
|
|
|
|
|
2010-04-07 05:11:13 +02:00
|
|
|
#endif // UAVOBJECTFIELDINT8_H
|