1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00
LibrePilot/flight/OpenPilot/UAVObjects/inc/mixerstatus.h
peabody124 f96654ace1 Adding mixerstatus/mixersetting uavobject files that were missed
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1701 ebee16cc-31ac-478f-84a7-5cbb03baadba
2010-09-21 07:08:51 +00:00

106 lines
3.9 KiB
C

/**
******************************************************************************
* @addtogroup UAVObjects OpenPilot UAVObjects
* @{
* @addtogroup MixerStatus MixerStatus
* @brief Status for the matrix mixer showing the output of each mixer after all scaling
*
* Autogenerated files and functions for MixerStatus Object
* @{
*
* @file mixerstatus.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
* @brief Implementation of the MixerStatus object. This file has been
* automatically generated by the UAVObjectGenerator.
*
* @note Object definition file: mixerstatus.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
*/
#ifndef MIXERSTATUS_H
#define MIXERSTATUS_H
// Object constants
#define MIXERSTATUS_OBJID 2468388390U
#define MIXERSTATUS_NAME "MixerStatus"
#define MIXERSTATUS_METANAME "MixerStatusMeta"
#define MIXERSTATUS_ISSINGLEINST 1
#define MIXERSTATUS_ISSETTINGS 0
#define MIXERSTATUS_NUMBYTES sizeof(MixerStatusData)
// Object access macros
/**
* @function MixerStatusGet(dataOut)
* @brief Populate a MixerStatusData object
* @param[out] dataOut
*/
#define MixerStatusGet(dataOut) UAVObjGetData(MixerStatusHandle(), dataOut)
#define MixerStatusSet(dataIn) UAVObjSetData(MixerStatusHandle(), dataIn)
#define MixerStatusInstGet(instId, dataOut) UAVObjGetInstanceData(MixerStatusHandle(), instId, dataOut)
#define MixerStatusInstSet(instId, dataIn) UAVObjSetInstanceData(MixerStatusHandle(), instId, dataIn)
#define MixerStatusConnectQueue(queue) UAVObjConnectQueue(MixerStatusHandle(), queue, EV_MASK_ALL_UPDATES)
#define MixerStatusConnectCallback(cb) UAVObjConnectCallback(MixerStatusHandle(), cb, EV_MASK_ALL_UPDATES)
#define MixerStatusCreateInstance() UAVObjCreateInstance(MixerStatusHandle())
#define MixerStatusRequestUpdate() UAVObjRequestUpdate(MixerStatusHandle())
#define MixerStatusRequestInstUpdate(instId) UAVObjRequestInstanceUpdate(MixerStatusHandle(), instId)
#define MixerStatusUpdated() UAVObjUpdated(MixerStatusHandle())
#define MixerStatusInstUpdated(instId) UAVObjUpdated(MixerStatusHandle(), instId)
#define MixerStatusGetMetadata(dataOut) UAVObjGetMetadata(MixerStatusHandle(), dataOut)
#define MixerStatusSetMetadata(dataIn) UAVObjSetMetadata(MixerStatusHandle(), dataIn)
#define MixerStatusReadOnly(dataIn) UAVObjReadOnly(MixerStatusHandle())
// Object data
typedef struct {
float Mixer0;
float Mixer1;
float Mixer2;
float Mixer3;
float Mixer4;
float Mixer5;
float Mixer6;
float Mixer7;
} __attribute__((packed)) MixerStatusData;
// Field information
// Field Mixer0 information
// Field Mixer1 information
// Field Mixer2 information
// Field Mixer3 information
// Field Mixer4 information
// Field Mixer5 information
// Field Mixer6 information
// Field Mixer7 information
// Generic interface functions
int32_t MixerStatusInitialize();
UAVObjHandle MixerStatusHandle();
#endif // MIXERSTATUS_H
/**
* @}
* @}
*/