mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 19:46:54 +03:00
25 lines
362 B
C
25 lines
362 B
C
|
|
#include "../../include/defines.h"
|
|
|
|
#ifdef DEBUG_ENABLE_PERFMON
|
|
|
|
#ifndef COMPONENTS_PERFMON_INCLUDE_PERFMON_H_
|
|
#define COMPONENTS_PERFMON_INCLUDE_PERFMON_H_
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t perfmon_start();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* COMPONENTS_PERFMON_INCLUDE_PERFMON_H_ */
|
|
|
|
#endif //DEBUG_ENABLE_PERFMON
|