12345678910111213141516171819202122232425262728293031323334353637 |
- #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);
- #ifdef __cplusplus
- }
- #endif
- #endif
|