24 lines
572 B
C
24 lines
572 B
C
/**
|
|
* @file monitoring.h
|
|
*
|
|
* @copyright Nehemis SARL reserves all rights even in the event of industrial
|
|
* property rights. We reserve all rights of disposal such as
|
|
* copying and passing on to third parties.
|
|
*
|
|
* @brief
|
|
*
|
|
*/
|
|
|
|
#ifndef MONITORING_H_
|
|
#define MONITORING_H_
|
|
|
|
/******************************************************************************
|
|
* Include Header Files
|
|
******************************************************************************/
|
|
#include "nms_types.h"
|
|
|
|
void MonitoringRun(void);
|
|
|
|
|
|
#endif /* MONITORING_H_ */
|