1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef __SELFCHECK_H__
- #define __SELFCHECK_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*Includes ------------------------------------------------------*/
- #include <stdbool.h>
- #include <stdint.h>
- #include <string.h>
- #include "sdk_common.h"
- #include "SEGGER_RTT.h"
- #include "usr_config.h"
- /*Private macro ------------------------------------------------------------------------------------------------------------------------------------*/
- /*STRUCTION ----------------------------------------------------*/
- /*API -------------------------------------------------------*/
- /**
- @brief 自检触发回调
- @param order - [in] 回调触发的指令
- @return 无
- */
- void selfcheck_trigger_callback(char order);
- #ifdef __cplusplus
- }
- #endif
- #endif
|