2010-02-22 03:18:23 +01:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
2010-08-27 02:15:42 +02:00
|
|
|
* @addtogroup UAVObjects OpenPilot UAVObjects
|
|
|
|
* @{
|
|
|
|
* @addtogroup $(NAME) $(NAME)
|
|
|
|
* @brief $(DESCRIPTION)
|
|
|
|
*
|
|
|
|
* Autogenerated files and functions for $(NAME) Object
|
|
|
|
* @{
|
2010-02-22 03:18:23 +01:00
|
|
|
*
|
2010-03-27 04:19:56 +01:00
|
|
|
* @file $(NAMELC).c
|
2010-02-22 03:18:23 +01:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2010-03-27 04:19:56 +01:00
|
|
|
* @brief Implementation of the $(NAME) object. This file has been
|
|
|
|
* automatically generated by the UAVObjectGenerator.
|
|
|
|
*
|
|
|
|
* @note Object definition file: $(XMLFILE).
|
|
|
|
* This is an automatically generated file.
|
|
|
|
* DO NOT modify manually.
|
2010-02-22 03:18:23 +01:00
|
|
|
*
|
|
|
|
* @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-02-22 03:18:23 +01:00
|
|
|
#include "$(NAMELC).h"
|
|
|
|
|
2010-02-27 20:57:45 +01:00
|
|
|
// Private variables
|
2011-08-19 17:12:39 +02:00
|
|
|
static UAVObjHandle handle = NULL;
|
2010-02-22 03:18:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize object.
|
|
|
|
* \return 0 Success
|
2011-06-18 21:21:14 +02:00
|
|
|
* \return -1 Failure to initialize or -2 for already initialized
|
2010-02-22 03:18:23 +01:00
|
|
|
*/
|
2011-01-30 23:46:48 +01:00
|
|
|
int32_t $(NAME)Initialize(void)
|
2010-02-22 03:18:23 +01:00
|
|
|
{
|
2011-06-18 21:21:14 +02:00
|
|
|
// Don't set the handle to null if already registered
|
|
|
|
if(UAVObjGetByID($(NAMEUC)_OBJID) != NULL)
|
|
|
|
return -2;
|
|
|
|
|
2010-02-27 20:57:45 +01:00
|
|
|
// Register object with the object manager
|
2010-04-30 04:28:16 +02:00
|
|
|
handle = UAVObjRegister($(NAMEUC)_OBJID, $(NAMEUC)_NAME, $(NAMEUC)_METANAME, 0,
|
2011-01-24 08:51:17 +01:00
|
|
|
$(NAMEUC)_ISSINGLEINST, $(NAMEUC)_ISSETTINGS, $(NAMEUC)_NUMBYTES, &$(NAME)SetDefaults);
|
2010-04-28 03:54:24 +02:00
|
|
|
|
2010-02-27 20:57:45 +01:00
|
|
|
// Done
|
2010-04-30 04:28:16 +02:00
|
|
|
if (handle != 0)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2010-02-22 03:18:23 +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.
|
|
|
|
*/
|
2011-01-24 08:51:17 +01:00
|
|
|
void $(NAME)SetDefaults(UAVObjHandle obj, uint16_t instId)
|
2010-04-28 03:54:24 +02:00
|
|
|
{
|
|
|
|
$(NAME)Data 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($(NAME)Data));
|
|
|
|
$(INITFIELDS)
|
2010-04-30 04:28:16 +02:00
|
|
|
UAVObjSetInstanceData(obj, instId, &data);
|
|
|
|
|
|
|
|
// Initialize object metadata to their default values
|
2012-02-21 02:45:18 +01:00
|
|
|
metadata.flags =
|
|
|
|
$(FLIGHTACCESS) << UAVOBJ_ACCESS_SHIFT |
|
|
|
|
$(GCSACCESS) << UAVOBJ_GCS_ACCESS_SHIFT |
|
|
|
|
$(FLIGHTTELEM_ACKED) << UAVOBJ_TELEMETRY_ACKED_SHIFT |
|
|
|
|
$(GCSTELEM_ACKED) << UAVOBJ_GCS_TELEMETRY_ACKED_SHIFT |
|
|
|
|
$(FLIGHTTELEM_UPDATEMODE) << UAVOBJ_TELEMETRY_UPDATE_MODE_SHIFT |
|
|
|
|
$(GCSTELEM_UPDATEMODE) << UAVOBJ_GCS_TELEMETRY_UPDATE_MODE_SHIFT;
|
2010-04-30 04:28:16 +02:00
|
|
|
metadata.telemetryUpdatePeriod = $(FLIGHTTELEM_UPDATEPERIOD);
|
|
|
|
metadata.gcsTelemetryUpdatePeriod = $(GCSTELEM_UPDATEPERIOD);
|
|
|
|
metadata.loggingUpdatePeriod = $(LOGGING_UPDATEPERIOD);
|
|
|
|
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 $(NAME)Handle()
|
2010-02-22 03:18:23 +01:00
|
|
|
{
|
2010-02-27 20:57:45 +01:00
|
|
|
return handle;
|
2010-02-22 03:18:23 +01:00
|
|
|
}
|
|
|
|
|
2011-06-03 06:18:34 +02:00
|
|
|
/**
|
|
|
|
* Get/Set object Functions
|
|
|
|
*/
|
|
|
|
$(SETGETFIELDS)
|
|
|
|
|
2010-08-27 02:15:42 +02:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2010-04-28 03:54:24 +02:00
|
|
|
|