exception.h 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef __EXCEPTION_H__
  2. #define __EXCEPTION_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /*Includes ------------------------------------------------------*/
  7. #include <stdint.h>
  8. #include <stdbool.h>
  9. /*STRUCTION -----------------------------------------------------*/
  10. typedef enum {
  11. //数据异常
  12. EXCEPT_DATA_BACK_MAG, //异常 —— 后脚地磁数据
  13. EXCEPT_DATA_FRONT_ACC, //异常 —— 前脚加速度数据
  14. EXCEPT_DATA_FRONT_GRY, //异常 —— 前脚陀螺仪数据
  15. EXCEPT_DATA_FRONT_MAG, //异常 —— 前脚地磁数据
  16. EXCEPT_DATA_CHARGE, //异常 —— 充电数据
  17. EXCEPT_DATA_BATTERY, //异常 —— 电池数据
  18. //其余异常
  19. EXCEPT_MODE_SUSPEND_OVERFLOW, //异常 —— 持续处于异常挂起模式
  20. //无异常
  21. EXCEPT_NO_EXCEPTION = 0
  22. }ExcepType_t;
  23. /*API -------------------------------------------------------*/
  24. void Exception_Init(void);
  25. void Except_SaveExceptype(ExcepType_t excep_type);
  26. uint32_t Except_IsError(ExcepType_t excep_type);
  27. bool Except_IsErrorExist(void);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif