1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

OP-1365 Flight code instrumentation API: Fix wrapper documentation/headers

This commit is contained in:
Alessio Morale 2014-06-07 15:45:27 +02:00
parent 9db264a457
commit 08e4ec7fd3
2 changed files with 10 additions and 5 deletions

View File

@ -3,8 +3,8 @@
*
* @file instrumentation.h
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
* @brief brief goes here.
* --
* @brief Instrumentation infrastructure
* UAVObject wrapper layer for PiOS instrumentation
* @see The GNU Public License (GPL) Version 3
*
*****************************************************************************/
@ -26,9 +26,14 @@
#ifndef INSTRUMENTATION_H
#define INSTRUMENTATION_H
#include <perfcounter.h>
/**
* Initialize the instrumentationUAVObject wrapper
*/
void InstrumentationInit();
/**
* publish all counters to UAVObjects
*/
void InstrumentationPublishAllCounters();
#endif /* INSTRUMENTATION_H */

View File

@ -3,8 +3,8 @@
*
* @file instrumentation.c
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2014.
* @brief brief goes here.
* --
* @brief Instrumentation infrastructure
* UAVObject wrapper layer for PiOS instrumentation
* @see The GNU Public License (GPL) Version 3
*
*****************************************************************************/