| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022.03.02 FMD-AE first version
- */
- #ifndef __DRV_USART_H__
- #define __DRV_USART_H__
- #include <rtthread.h>
- #include "rtdevice.h"
- #include <rthw.h>
- #include "drv_dma.h"
- int rt_hw_usart_init(void);
- #if defined(SOC_SERIES_FT32F0)
- #define DMA_INSTANCE_TYPE DMA_Channel_TypeDef
- #endif
- #if defined(SOC_SERIES_FT32F0)
- #define UART_INSTANCE_CLEAR_FUNCTION USART_ClearITPendingBit
- #endif
- #if defined(SOC_SERIES_FT32F4)
- #define UART_INSTANCE_CLEAR_FUNCTION USART_ClearFlag
- #endif
- #define USART_TX_Pin GPIO_PIN_2
- #define USART_TX_GPIO_Port GPIOA
- #define USART_RX_Pin GPIO_PIN_3
- #define USART_RX_GPIO_Port GPIOA
- /* ft32 config class */
- struct ft32_uart_config
- {
- const char *name;
- USART_TypeDef *Instance;
- IRQn_Type irq_type;
- struct dma_config *dma_rx;
- struct dma_config *dma_tx;
- };
- /* ft32 uart dirver class */
- struct ft32_uart
- {
- USART_InitTypeDef Init;
- struct ft32_uart_config *config;
- rt_uint16_t uart_dma_flag;
- struct rt_serial_device serial;
- };
- #endif /* __DRV_USART_H__ */
|