selfcheck.h 756 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #ifndef __SELFCHECK_H__
  2. #define __SELFCHECK_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /*Includes ------------------------------------------------------*/
  7. #include <stdbool.h>
  8. #include <stdint.h>
  9. #include <string.h>
  10. #include "sdk_common.h"
  11. #include "SEGGER_RTT.h"
  12. #include "usr_config.h"
  13. /*Private macro ------------------------------------------------------------------------------------------------------------------------------------*/
  14. /*STRUCTION ----------------------------------------------------*/
  15. /*API -------------------------------------------------------*/
  16. /**
  17. @brief 自检触发回调
  18. @param order - [in] 回调触发的指令
  19. @return 无
  20. */
  21. void selfcheck_trigger_callback(char order);
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif