main.h 841 B

1234567891011121314151617181920212223242526272829303132
  1. /************************************************************************************************/
  2. /**
  3. * @file main.h
  4. * @author MCU Ecosystem Development Team
  5. * @brief 应用主流程头文件。
  6. *
  7. *
  8. **************************************************************************************************
  9. * @attention
  10. * Copyright (c) CEC Huada Electronic Design Co.,Ltd. All rights reserved.
  11. *
  12. **************************************************************************************************
  13. */
  14. /* 避免头文件重复引用 */
  15. #ifndef MAIN_H
  16. #define MAIN_H
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /*------------------------------------------includes--------------------------------------------*/
  21. #include "common.h"
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* MAIN_H */