app.h 318 B

1234567891011121314151617181920212223242526
  1. /**
  2. * @file app.h
  3. * @author Ye Jin (yejin4@midea.com)
  4. * @brief
  5. * @version 0.1
  6. * @date 2023-05-24
  7. *
  8. * @copyright Copyright (c) 2023
  9. *
  10. */
  11. #ifndef _APP_H_
  12. #define _APP_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif // __cplusplus
  16. void AppInit();
  17. void AppLoop();
  18. #ifdef __cplusplus
  19. }
  20. #endif // __cplusplus
  21. #endif