1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /************************************************************************************************/
- /**
- * @file common.h
- * @author MCU Ecosystem Development Team
- * @brief COMMON头文件。
- *
- *
- **************************************************************************************************
- * @attention
- * Copyright (c) CEC Huada Electronic Design Co.,Ltd. All rights reserved.
- *
- **************************************************************************************************
- */
- /* 避免头文件重复引用 */
- #ifndef COMMON_H
- #define COMMON_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*------------------------------------------includes--------------------------------------------*/
- #include "ciu32f003_std.h"
- /*-------------------------------------------define---------------------------------------------*/
- /* LED IO相关定义 */
- #define LED_GPIO_PORT GPIOA
- #define LED_PIN GPIO_PIN_5
- /*-------------------------------------------functions------------------------------------------*/
- void system_clock_config(void);
- void gpio_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* COMMON_H */
|