2010-04-10 07:06:19 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
2010-04-30 04:28:16 +02:00
|
|
|
* @file objectpersistence.c
|
2010-04-10 07:06:19 +02:00
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
2010-04-30 04:28:16 +02:00
|
|
|
* @brief Implementation of the ObjectPersistence object. This file has been
|
2010-04-10 07:06:19 +02:00
|
|
|
* automatically generated by the UAVObjectGenerator.
|
|
|
|
*
|
2010-04-30 04:28:16 +02:00
|
|
|
* @note Object definition file: objectpersistence.xml.
|
2010-04-10 07:06:19 +02: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-30 04:28:16 +02:00
|
|
|
#include "objectpersistence.h"
|
2010-04-10 07:06:19 +02:00
|
|
|
|
|
|
|
// Private variables
|
|
|
|
static UAVObjHandle handle;
|
|
|
|
|
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-04-10 07:06:19 +02:00
|
|
|
/**
|
|
|
|
* Initialize object.
|
|
|
|
* \return 0 Success
|
|
|
|
* \return -1 Failure
|
|
|
|
*/
|
2010-04-30 04:28:16 +02:00
|
|
|
int32_t ObjectPersistenceInitialize()
|
2010-04-10 07:06:19 +02:00
|
|
|
{
|
|
|
|
// Register object with the object manager
|
2010-04-30 04:28:16 +02:00
|
|
|
handle = UAVObjRegister(OBJECTPERSISTENCE_OBJID, OBJECTPERSISTENCE_NAME, OBJECTPERSISTENCE_METANAME, 0,
|
|
|
|
OBJECTPERSISTENCE_ISSINGLEINST, OBJECTPERSISTENCE_ISSETTINGS, OBJECTPERSISTENCE_NUMBYTES, &setDefaults);
|
2010-04-28 03:54:24 +02:00
|
|
|
|
2010-04-10 07:06:19 +02:00
|
|
|
// Done
|
2010-04-30 04:28:16 +02:00
|
|
|
if (handle != 0)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2010-04-10 07:06:19 +02: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
|
|
|
{
|
2010-04-30 04:28:16 +02:00
|
|
|
ObjectPersistenceData data;
|
|
|
|
UAVObjMetadata metadata;
|
|
|
|
|
|
|
|
// Initialize object fields to their default values
|
|
|
|
UAVObjGetInstanceData(obj, instId, &data);
|
|
|
|
memset(&data, 0, sizeof(ObjectPersistenceData));
|
|
|
|
|
|
|
|
UAVObjSetInstanceData(obj, instId, &data);
|
2010-04-28 03:54:24 +02:00
|
|
|
|
2010-04-30 04:28:16 +02:00
|
|
|
// 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_MANUAL;
|
|
|
|
metadata.telemetryUpdatePeriod = 0;
|
|
|
|
metadata.gcsTelemetryAcked = 1;
|
|
|
|
metadata.gcsTelemetryUpdateMode = UPDATEMODE_MANUAL;
|
|
|
|
metadata.gcsTelemetryUpdatePeriod = 0;
|
|
|
|
metadata.loggingUpdateMode = UPDATEMODE_NEVER;
|
|
|
|
metadata.loggingUpdatePeriod = 0;
|
|
|
|
UAVObjSetMetadata(obj, &metadata);
|
2010-04-28 03:54:24 +02:00
|
|
|
}
|
|
|
|
|
2010-04-10 07:06:19 +02:00
|
|
|
/**
|
|
|
|
* Get object handle
|
|
|
|
*/
|
2010-04-30 04:28:16 +02:00
|
|
|
UAVObjHandle ObjectPersistenceHandle()
|
2010-04-10 07:06:19 +02:00
|
|
|
{
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
|