123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef __APP_SELF_CHECKING_H__
- #define __APP_SELF_CHECKING_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"
- /*API -------------------------------------------------------*/
- void app_self_checking_Init(void);
- uint32_t app_self_checking_get_scan_trigger_timeout(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|