12345678910111213141516171819202122 |
- #ifndef __HAL_MONITOR_H__
- #define __HAL_MONITOR_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*Includes ------------------------------------------------------*/
- #include <stdint.h>
- /*Private macro ------------------------------------------------*/
- #define MONITOR_SUSPEND_MODE_OVERFLOW_ERR_SUM_MAX 10 //异常挂起模式持续错误累计最大值
- /*API -------------------------------------------------------*/
- void hal_monitor_Init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|