17 lines
427 B
C
17 lines
427 B
C
/**
|
|
* @file include/di_fw/stack_profiling.h
|
|
* @brief Stack profiling header file
|
|
* @date August 29, 2016
|
|
* @author R.W.A. van der Heijden
|
|
* @copyright 2016 Dual Inventive Technology Centre B.V.
|
|
*/
|
|
#ifndef INCLUDE_DI_FW_STACK_PROFILING_H_
|
|
#define INCLUDE_DI_FW_STACK_PROFILING_H_
|
|
|
|
/**
|
|
* Calculating stack usage in every 10 seconds
|
|
*/
|
|
void di_fw_stack_profiling_loop(void);
|
|
|
|
#endif /* INCLUDE_DI_FW_STACK_PROFILING_H_ */
|