1234567891011121314151617181920212223242526 |
- /**
- * @file app.h
- * @author Ye Jin (yejin4@midea.com)
- * @brief
- * @version 0.1
- * @date 2023-05-24
- *
- * @copyright Copyright (c) 2023
- *
- */
- #ifndef _APP_H_
- #define _APP_H_
- #ifdef __cplusplus
- extern "C" {
- #endif // __cplusplus
- void AppInit();
- void AppLoop();
- #ifdef __cplusplus
- }
- #endif // __cplusplus
- #endif
|