1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00
LibrePilot/flight/OpenPilot/UAVObjects/inc/navigationsettings.h
cwabbott d7a3ffb464 flight/PiOS.win32: update Makefile.win32 with new UAVObjects, also change UAVObject headers to have a newline at the end.
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1510 ebee16cc-31ac-478f-84a7-5cbb03baadba
2010-09-02 23:55:24 +00:00

106 lines
4.3 KiB
C

/**
******************************************************************************
* @addtogroup UAVObjects OpenPilot UAVObjects
* @{
* @addtogroup NavigationSettings NavigationSettings
* @brief Settings for Navigation. Currently unused.
*
* Autogenerated files and functions for NavigationSettings Object
* @{
*
* @file navigationsettings.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
* @brief Implementation of the NavigationSettings object. This file has been
* automatically generated by the UAVObjectGenerator.
*
* @note Object definition file: navigationsettings.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 NAVIGATIONSETTINGS_H
#define NAVIGATIONSETTINGS_H
// Object constants
#define NAVIGATIONSETTINGS_OBJID 1350892244U
#define NAVIGATIONSETTINGS_NAME "NavigationSettings"
#define NAVIGATIONSETTINGS_METANAME "NavigationSettingsMeta"
#define NAVIGATIONSETTINGS_ISSINGLEINST 1
#define NAVIGATIONSETTINGS_ISSETTINGS 1
#define NAVIGATIONSETTINGS_NUMBYTES sizeof(NavigationSettingsData)
// Object access macros
/**
* @function NavigationSettingsGet(dataOut)
* @brief Populate a NavigationSettingsData object
* @param[out] dataOut
*/
#define NavigationSettingsGet(dataOut) UAVObjGetData(NavigationSettingsHandle(), dataOut)
#define NavigationSettingsSet(dataIn) UAVObjSetData(NavigationSettingsHandle(), dataIn)
#define NavigationSettingsInstGet(instId, dataOut) UAVObjGetInstanceData(NavigationSettingsHandle(), instId, dataOut)
#define NavigationSettingsInstSet(instId, dataIn) UAVObjSetInstanceData(NavigationSettingsHandle(), instId, dataIn)
#define NavigationSettingsConnectQueue(queue) UAVObjConnectQueue(NavigationSettingsHandle(), queue, EV_MASK_ALL_UPDATES)
#define NavigationSettingsConnectCallback(cb) UAVObjConnectCallback(NavigationSettingsHandle(), cb, EV_MASK_ALL_UPDATES)
#define NavigationSettingsCreateInstance() UAVObjCreateInstance(NavigationSettingsHandle())
#define NavigationSettingsRequestUpdate() UAVObjRequestUpdate(NavigationSettingsHandle())
#define NavigationSettingsRequestInstUpdate(instId) UAVObjRequestInstanceUpdate(NavigationSettingsHandle(), instId)
#define NavigationSettingsUpdated() UAVObjUpdated(NavigationSettingsHandle())
#define NavigationSettingsInstUpdated(instId) UAVObjUpdated(NavigationSettingsHandle(), instId)
#define NavigationSettingsGetMetadata(dataOut) UAVObjGetMetadata(NavigationSettingsHandle(), dataOut)
#define NavigationSettingsSetMetadata(dataIn) UAVObjSetMetadata(NavigationSettingsHandle(), dataIn)
#define NavigationSettingsReadOnly(dataIn) UAVObjReadOnly(NavigationSettingsHandle())
// Object data
typedef struct {
uint16_t UpdatePeriod;
float AccelerationMax;
float SpeedMax;
float SpeedSafe;
float SpeedMin;
float SettleTime;
float TurnSpeedFactor;
float StabilizationForceFactor;
} __attribute__((packed)) NavigationSettingsData;
// Field information
// Field UpdatePeriod information
// Field AccelerationMax information
// Field SpeedMax information
// Field SpeedSafe information
// Field SpeedMin information
// Field SettleTime information
// Field TurnSpeedFactor information
// Field StabilizationForceFactor information
// Generic interface functions
int32_t NavigationSettingsInitialize();
UAVObjHandle NavigationSettingsHandle();
#endif // NAVIGATIONSETTINGS_H
/**
* @}
* @}
*/