2010-04-18 04:13:59 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file systemalarms.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief Implementation of the SystemAlarms object. This file has been
|
|
|
|
* automatically generated by the UAVObjectGenerator.
|
|
|
|
*
|
|
|
|
* @note Object definition file: systemalarms.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
|
|
|
|
*/
|
|
|
|
|
2010-04-27 03:55:28 +02:00
|
|
|
#include "openpilot.h"
|
2010-04-18 04:13:59 +02:00
|
|
|
#include "systemalarms.h"
|
|
|
|
|
|
|
|
// Private variables
|
|
|
|
static UAVObjHandle handle;
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
// Private functions
|
|
|
|
static void setDefaultFieldValues();
|
|
|
|
|
2010-04-18 04:13:59 +02:00
|
|
|
/**
|
|
|
|
* Initialize object.
|
|
|
|
* \return 0 Success
|
|
|
|
* \return -1 Failure
|
|
|
|
*/
|
|
|
|
int32_t SystemAlarmsInitialize()
|
|
|
|
{
|
|
|
|
UAVObjMetadata metadata;
|
|
|
|
|
|
|
|
// Register object with the object manager
|
|
|
|
handle = UAVObjRegister(SYSTEMALARMS_OBJID, SYSTEMALARMS_NAME, 0, SYSTEMALARMS_ISSINGLEINST, SYSTEMALARMS_ISSETTINGS, SYSTEMALARMS_NUMBYTES);
|
|
|
|
if (handle == 0) return -1;
|
|
|
|
|
|
|
|
// Initialize metadata
|
|
|
|
metadata.telemetryAcked = 1;
|
2010-04-21 04:49:11 +02:00
|
|
|
metadata.telemetryUpdateMode = UPDATEMODE_PERIODIC;
|
|
|
|
metadata.telemetryUpdatePeriod = 4000;
|
2010-04-18 04:13:59 +02:00
|
|
|
metadata.gcsTelemetryAcked = 1;
|
|
|
|
metadata.gcsTelemetryUpdateMode = UPDATEMODE_ONCHANGE;
|
|
|
|
metadata.gcsTelemetryUpdatePeriod = 0;
|
2010-04-21 04:49:11 +02:00
|
|
|
metadata.loggingUpdateMode = UPDATEMODE_PERIODIC;
|
|
|
|
metadata.loggingUpdatePeriod = 1000;
|
2010-04-18 04:13:59 +02:00
|
|
|
UAVObjSetMetadata(handle, &metadata);
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
// Initialize field values
|
|
|
|
setDefaultFieldValues();
|
|
|
|
|
2010-04-18 04:13:59 +02:00
|
|
|
// Done
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
/**
|
|
|
|
* Initialize object fields with the default values.
|
|
|
|
* If a default value is not specified the object fields
|
|
|
|
* will be initialized to zero.
|
|
|
|
*/
|
|
|
|
static void setDefaultFieldValues()
|
|
|
|
{
|
|
|
|
SystemAlarmsData data;
|
|
|
|
SystemAlarmsGet(&data);
|
|
|
|
memset(&data, 0, sizeof(SystemAlarmsData));
|
|
|
|
|
|
|
|
SystemAlarmsSet(&data);
|
|
|
|
}
|
|
|
|
|
2010-04-18 04:13:59 +02:00
|
|
|
/**
|
|
|
|
* Get object handle
|
|
|
|
*/
|
|
|
|
UAVObjHandle SystemAlarmsHandle()
|
|
|
|
{
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-28 03:54:24 +02:00
|
|
|
|