hal_monitor.h 471 B

12345678910111213141516171819202122
  1. #ifndef __HAL_MONITOR_H__
  2. #define __HAL_MONITOR_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /*Includes ------------------------------------------------------*/
  7. #include <stdint.h>
  8. /*Private macro ------------------------------------------------*/
  9. #define MONITOR_SUSPEND_MODE_OVERFLOW_ERR_SUM_MAX 10 //异常挂起模式持续错误累计最大值
  10. /*API -------------------------------------------------------*/
  11. void hal_monitor_Init(void);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif