12345678910111213141516171819202122 |
- #ifndef _API_RT_COMMON_H_
- #define _API_RT_COMMON_H_
- #include "stdint.h"
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
- typedef struct
- {
- uint8_t Enable;
- void (*Action)();
- } ApiRt_Interrupt;
- void iRt_Init();
- #ifdef __cplusplus
- }
- #endif // __cplusplus
- #endif
|