1234567891011121314151617181920212223242526272829303132 |
- /************************************************************************************************/
- /**
- * @file main.h
- * @author MCU Ecosystem Development Team
- * @brief 应用主流程头文件。
- *
- *
- **************************************************************************************************
- * @attention
- * Copyright (c) CEC Huada Electronic Design Co.,Ltd. All rights reserved.
- *
- **************************************************************************************************
- */
- /* 避免头文件重复引用 */
- #ifndef MAIN_H
- #define MAIN_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*------------------------------------------includes--------------------------------------------*/
- #include "common.h"
- #ifdef __cplusplus
- }
- #endif
- #endif /* MAIN_H */
|