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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "$(NAMELC).h"
|
|
|
|
|
2010-02-27 20:57:45 +01:00
|
|
|
// Private variables
|
2010-04-04 04:11:51 +02:00
|
|
|
static UAVObjHandle handle;
|
2010-02-22 03:18:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize object.
|
|
|
|
* \return 0 Success
|
|
|
|
* \return -1 Failure
|
|
|
|
*/
|
|
|
|
int32_t $(NAME)Initialize()
|
|
|
|
{
|
2010-02-27 20:57:45 +01:00
|
|
|
UAVObjMetadata metadata;
|
|
|
|
|
|
|
|
// Register object with the object manager
|
2010-03-29 00:23:57 +02:00
|
|
|
handle = UAVObjRegister($(NAMEUC)_OBJID, $(NAMEUC)_NAME, 0, $(NAMEUC)_ISSINGLEINST, $(NAMEUC)_ISSETTINGS, $(NAMEUC)_NUMBYTES);
|
2010-02-27 20:57:45 +01:00
|
|
|
if (handle == 0) return -1;
|
|
|
|
|
2010-03-27 04:19:56 +01:00
|
|
|
// Initialize metadata
|
|
|
|
metadata.telemetryAcked = $(FLIGHTTELEM_ACKED);
|
2010-03-11 03:31:32 +01:00
|
|
|
metadata.telemetryUpdateMode = $(FLIGHTTELEM_UPDATEMODE);
|
|
|
|
metadata.telemetryUpdatePeriod = $(FLIGHTTELEM_UPDATEPERIOD);
|
2010-03-27 04:19:56 +01:00
|
|
|
metadata.gcsTelemetryAcked = $(GCSTELEM_ACKED);
|
|
|
|
metadata.gcsTelemetryUpdateMode = $(GCSTELEM_UPDATEMODE);
|
|
|
|
metadata.gcsTelemetryUpdatePeriod = $(GCSTELEM_UPDATEPERIOD);
|
2010-02-27 20:57:45 +01:00
|
|
|
metadata.loggingUpdateMode = $(LOGGING_UPDATEMODE);
|
|
|
|
metadata.loggingUpdatePeriod = $(LOGGING_UPDATEPERIOD);
|
|
|
|
UAVObjSetMetadata(handle, &metadata);
|
|
|
|
|
|
|
|
// Done
|
2010-02-22 03:18:23 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|