31 lines
710 B
C
31 lines
710 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 ENDURANCETESTBENCH_H_
|
|
#define ENDURANCETESTBENCH_H_
|
|
|
|
/******************************************************************************
|
|
* Include Header Files
|
|
******************************************************************************/
|
|
#include "nms_types.h"
|
|
|
|
/**
|
|
* @brief This is the main function that runs the endurance
|
|
* test bench.
|
|
*
|
|
* @return void
|
|
*
|
|
*/
|
|
void EnduranceTestBenchRun(void);
|
|
|
|
|
|
#endif /* ENDURANCETESTBENCH_H_ */
|