2010-03-27 04:19:56 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2010-04-02 05:26:02 +02:00
|
|
|
* @file exampleobject1.c
|
2010-03-27 04:19:56 +01:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2010-04-02 05:26:02 +02:00
|
|
|
* @brief Implementation of the ExampleObject1 object. This file has been
|
2010-03-27 04:19:56 +01:00
|
|
|
* automatically generated by the UAVObjectGenerator.
|
|
|
|
*
|
2010-04-02 05:26:02 +02:00
|
|
|
* @note Object definition file: exampleobject1.xml.
|
2010-03-27 04:19:56 +01:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2010-04-27 03:55:28 +02:00
|
|
|
#include "openpilot.h"
|
2010-04-02 05:26:02 +02:00
|
|
|
#include "exampleobject1.h"
|
2010-03-27 04:19:56 +01:00
|
|
|
|
|
|
|
// Private variables
|
2010-04-04 04:11:51 +02:00
|
|
|
static UAVObjHandle handle;
|
2010-03-27 04:19:56 +01:00
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
// Private functions
|
2010-04-30 04:28:16 +02:00
|
|
|
static void setDefaults(UAVObjHandle obj, uint16_t instId);
|
2010-04-28 03:54:24 +02:00
|
|
|
|
2010-03-27 04:19:56 +01:00
|
|
|
/**
|
|
|
|
* Initialize object.
|
|
|
|
* \return 0 Success
|
|
|
|
* \return -1 Failure
|
|
|
|
*/
|
2010-04-02 05:26:02 +02:00
|
|
|
int32_t ExampleObject1Initialize()
|
2010-03-27 04:19:56 +01:00
|
|
|
{
|
|
|
|
// Register object with the object manager
|
2010-04-30 04:28:16 +02:00
|
|
|
handle = UAVObjRegister(EXAMPLEOBJECT1_OBJID, EXAMPLEOBJECT1_NAME, EXAMPLEOBJECT1_METANAME, 0,
|
|
|
|
EXAMPLEOBJECT1_ISSINGLEINST, EXAMPLEOBJECT1_ISSETTINGS, EXAMPLEOBJECT1_NUMBYTES, &setDefaults);
|
2010-04-28 03:54:24 +02:00
|
|
|
|
2010-03-27 04:19:56 +01:00
|
|
|
// Done
|
2010-04-30 04:28:16 +02:00
|
|
|
if (handle != 0)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2010-03-27 04:19:56 +01:00
|
|
|
}
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
/**
|
2010-04-30 04:28:16 +02:00
|
|
|
* Initialize object fields and metadata with the default values.
|
2010-04-28 03:54:24 +02:00
|
|
|
* If a default value is not specified the object fields
|
|
|
|
* will be initialized to zero.
|
|
|
|
*/
|
2010-04-30 04:28:16 +02:00
|
|
|
static void setDefaults(UAVObjHandle obj, uint16_t instId)
|
2010-04-28 03:54:24 +02:00
|
|
|
{
|
|
|
|
ExampleObject1Data data;
|
2010-04-30 04:28:16 +02:00
|
|
|
UAVObjMetadata metadata;
|
|
|
|
|
|
|
|
// Initialize object fields to their default values
|
|
|
|
UAVObjGetInstanceData(obj, instId, &data);
|
2010-04-28 03:54:24 +02:00
|
|
|
memset(&data, 0, sizeof(ExampleObject1Data));
|
|
|
|
|
2010-04-30 04:28:16 +02:00
|
|
|
UAVObjSetInstanceData(obj, instId, &data);
|
|
|
|
|
|
|
|
// Initialize object metadata to their default values
|
2010-05-20 02:58:40 +02:00
|
|
|
metadata.access = ACCESS_READWRITE;
|
|
|
|
metadata.gcsAccess = ACCESS_READWRITE;
|
2010-04-30 04:28:16 +02:00
|
|
|
metadata.telemetryAcked = 1;
|
|
|
|
metadata.telemetryUpdateMode = UPDATEMODE_ONCHANGE;
|
|
|
|
metadata.telemetryUpdatePeriod = 0;
|
|
|
|
metadata.gcsTelemetryAcked = 1;
|
|
|
|
metadata.gcsTelemetryUpdateMode = UPDATEMODE_PERIODIC;
|
2010-05-30 03:56:43 +02:00
|
|
|
metadata.gcsTelemetryUpdatePeriod = 500;
|
2010-04-30 04:28:16 +02:00
|
|
|
metadata.loggingUpdateMode = UPDATEMODE_NEVER;
|
|
|
|
metadata.loggingUpdatePeriod = 0;
|
|
|
|
UAVObjSetMetadata(obj, &metadata);
|
2010-04-28 03:54:24 +02:00
|
|
|
}
|
|
|
|
|
2010-03-27 04:19:56 +01:00
|
|
|
/**
|
|
|
|
* Get object handle
|
|
|
|
*/
|
2010-04-02 05:26:02 +02:00
|
|
|
UAVObjHandle ExampleObject1Handle()
|
2010-03-27 04:19:56 +01:00
|
|
|
{
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
|