35 lines
843 B
C
35 lines
843 B
C
/************************************************************************************************/
|
|
/**
|
|
* @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"
|
|
#include "usart_bsp.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MAIN_H */
|
|
|
|
|