| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*!
- \file gd32f3x0_eval.h
- \brief definitions for GD32f3x0_EVAL's leds, keys and COM ports hardware resources
- */
- /*
- Copyright (C) 2017 GigaDevice
- 2017-06-06, V1.0.0, firmware for GD32F3x0
- */
- #ifndef GD32F3X0_EVAL_H
- #define GD32F3X0_EVAL_H
- #ifdef cplusplus
- extern "C" {
- #endif
- #include "gd32f3x0.h"
- /* exported types */
- typedef enum
- {
- LED1 = 0,
- LED2 = 1,
- LED3 = 2,
- LED4 = 3
- }led_typedef_enum;
- typedef enum
- {
- KEY_WAKEUP = 0,
- KEY_TAMPER = 1,
- KEY_USER = 2
- }key_typedef_enum;
- typedef enum
- {
- KEY_MODE_GPIO = 0,
- KEY_MODE_EXTI = 1
- }keymode_typedef_enum;
- /* eval board low layer led */
- #define LEDn 4U
- #define LED1_PIN GPIO_PIN_10
- #define LED1_GPIO_PORT GPIOC
- #define LED1_GPIO_CLK RCU_GPIOC
- #define LED2_PIN GPIO_PIN_11
- #define LED2_GPIO_PORT GPIOC
- #define LED2_GPIO_CLK RCU_GPIOC
- #define LED3_PIN GPIO_PIN_12
- #define LED3_GPIO_PORT GPIOC
- #define LED3_GPIO_CLK RCU_GPIOC
- #define LED4_PIN GPIO_PIN_2
- #define LED4_GPIO_PORT GPIOC
- #define LED4_GPIO_CLK RCU_GPIOC
- /* eval board low layer button */
- #define KEYn 3U
- /* wakeup push-button */
- #define WAKEUP_KEY_PIN GPIO_PIN_0
- #define WAKEUP_KEY_GPIO_PORT GPIOA
- #define WAKEUP_KEY_GPIO_CLK RCU_GPIOA
- #define WAKEUP_KEY_EXTI_LINE EXTI_0
- #define WAKEUP_KEY_EXTI_PORT_SOURCE EXTI_SOURCE_GPIOA
- #define WAKEUP_KEY_EXTI_PIN_SOURCE EXTI_SOURCE_PIN0
- #define WAKEUP_KEY_EXTI_IRQn EXTI0_1_IRQn
- /* tamper push-button */
- #define TAMPER_KEY_PIN GPIO_PIN_13
- #define TAMPER_KEY_GPIO_PORT GPIOC
- #define TAMPER_KEY_GPIO_CLK RCU_GPIOC
- #define TAMPER_KEY_EXTI_LINE EXTI_13
- #define TAMPER_KEY_EXTI_PORT_SOURCE EXTI_SOURCE_GPIOC
- #define TAMPER_KEY_EXTI_PIN_SOURCE EXTI_SOURCE_PIN13
- #define TAMPER_KEY_EXTI_IRQn EXTI4_15_IRQn
- /* user push-button */
- #define USER_KEY_PIN GPIO_PIN_7
- #define USER_KEY_GPIO_PORT GPIOF
- #define USER_KEY_GPIO_CLK RCU_GPIOF
- #define USER_KEY_EXTI_LINE EXTI_7
- #define USER_KEY_EXTI_PORT_SOURCE EXTI_SOURCE_GPIOF
- #define USER_KEY_EXTI_PIN_SOURCE EXTI_SOURCE_PIN7
- #define USER_KEY_EXTI_IRQn EXTI4_15_IRQn
- /* eval board low layer COM */
- #define COMn 1U
- /* definition for COM1, connected to USART0 */
- #define EVAL_COM1 USART0
- #define EVAL_COM1_CLK RCU_USART0
- #define EVAL_COM1_TX_PIN GPIO_PIN_9
- #define EVAL_COM1_RX_PIN GPIO_PIN_10
- #define EVAL_COM_GPIO_PORT GPIOA
- #define EVAL_COM_GPIO_CLK RCU_GPIOA
- #define EVAL_COM_AF GPIO_AF_1
- /* function declarations */
- /* configure led GPIO */
- void gd_eval_led_init(led_typedef_enum lednum);
- /* turn on selected led */
- void gd_eval_led_on(led_typedef_enum lednum);
- /* turn off selected led */
- void gd_eval_led_off(led_typedef_enum lednum);
- /* toggle the selected led */
- void gd_eval_led_toggle(led_typedef_enum lednum);
- /* configure key */
- void gd_eval_key_init(key_typedef_enum keynum, keymode_typedef_enum keymode);
- /* return the selected key state */
- uint8_t gd_eval_key_state_get(key_typedef_enum keynum);
- /* configure COM port */
- void gd_eval_com_init(uint32_t com);
- #ifdef cplusplus
- }
- #endif
- #endif /* GD32F3x0_EVAL_H */
|