app_self_checking.h 517 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef __APP_SELF_CHECKING_H__
  2. #define __APP_SELF_CHECKING_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. /*API -------------------------------------------------------*/
  14. void app_self_checking_Init(void);
  15. uint32_t app_self_checking_get_scan_trigger_timeout(void);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif