api_rt_common.h 276 B

12345678910111213141516171819202122
  1. #ifndef _API_RT_COMMON_H_
  2. #define _API_RT_COMMON_H_
  3. #include "stdint.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif // __cplusplus
  7. typedef struct
  8. {
  9. uint8_t Enable;
  10. void (*Action)();
  11. } ApiRt_Interrupt;
  12. void iRt_Init();
  13. #ifdef __cplusplus
  14. }
  15. #endif // __cplusplus
  16. #endif