2013-01-08 22:40:58 +08:00
|
|
|
/*
|
|
|
|
* File : usart.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2009, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-01-05 Bernard the first version
|
|
|
|
* 2010-03-29 Bernard remove interrupt Tx and DMA Rx mode
|
|
|
|
* 2012-02-08 aozima update for F4.
|
2015-01-20 15:23:59 +08:00
|
|
|
* 2012-07-28 aozima update for ART board.
|
2013-01-08 22:40:58 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stm32f4xx.h"
|
|
|
|
#include "usart.h"
|
|
|
|
#include "board.h"
|
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
#include <rtdevice.h>
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
/* UART GPIO define. */
|
2015-01-21 12:36:34 +08:00
|
|
|
#define UART1_GPIO_TX GPIO_Pin_6
|
2015-01-20 15:23:59 +08:00
|
|
|
#define UART1_TX_PIN_SOURCE GPIO_PinSource6
|
2015-01-21 12:36:34 +08:00
|
|
|
#define UART1_GPIO_RX GPIO_Pin_7
|
2015-01-20 15:23:59 +08:00
|
|
|
#define UART1_RX_PIN_SOURCE GPIO_PinSource7
|
2015-01-21 12:36:34 +08:00
|
|
|
#define UART1_GPIO GPIOB
|
2015-01-20 15:23:59 +08:00
|
|
|
#define UART1_GPIO_RCC RCC_AHB1Periph_GPIOB
|
2015-01-21 12:36:34 +08:00
|
|
|
#define RCC_APBPeriph_UART1 RCC_APB2Periph_USART1
|
|
|
|
#define UART1_TX_DMA DMA1_Channel4
|
|
|
|
#define UART1_RX_DMA DMA1_Channel5
|
2015-01-20 15:23:59 +08:00
|
|
|
|
2015-01-21 12:36:34 +08:00
|
|
|
#define UART2_GPIO_TX GPIO_Pin_2
|
2015-01-20 15:23:59 +08:00
|
|
|
#define UART2_TX_PIN_SOURCE GPIO_PinSource2
|
2015-01-21 12:36:34 +08:00
|
|
|
#define UART2_GPIO_RX GPIO_Pin_3
|
2015-01-20 15:23:59 +08:00
|
|
|
#define UART2_RX_PIN_SOURCE GPIO_PinSource3
|
2015-01-21 12:36:34 +08:00
|
|
|
#define UART2_GPIO GPIOA
|
2015-01-20 15:23:59 +08:00
|
|
|
#define UART2_GPIO_RCC RCC_AHB1Periph_GPIOA
|
2015-01-21 12:36:34 +08:00
|
|
|
#define RCC_APBPeriph_UART2 RCC_APB1Periph_USART2
|
|
|
|
#define UART2_TX_DMA DMA1_Channel4
|
|
|
|
#define UART2_RX_DMA DMA1_Channel5
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
#define UART3_GPIO_TX GPIO_Pin_8
|
|
|
|
#define UART3_TX_PIN_SOURCE GPIO_PinSource8
|
|
|
|
#define UART3_GPIO_RX GPIO_Pin_9
|
|
|
|
#define UART3_RX_PIN_SOURCE GPIO_PinSource9
|
|
|
|
#define UART3_GPIO GPIOD
|
|
|
|
#define UART3_GPIO_RCC RCC_AHB1Periph_GPIOD
|
|
|
|
#define RCC_APBPeriph_UART3 RCC_APB1Periph_USART3
|
|
|
|
#define UART3_TX_DMA DMA1_Stream1
|
|
|
|
#define UART3_RX_DMA DMA1_Stream3
|
|
|
|
|
|
|
|
/* STM32 uart driver */
|
|
|
|
struct stm32_uart
|
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
USART_TypeDef *uart_device;
|
2015-01-20 15:23:59 +08:00
|
|
|
IRQn_Type irq;
|
|
|
|
};
|
|
|
|
|
|
|
|
static rt_err_t stm32_configure(struct rt_serial_device *serial, struct serial_configure *cfg)
|
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
USART_InitTypeDef USART_InitStructure;
|
|
|
|
|
|
|
|
RT_ASSERT(serial != RT_NULL);
|
|
|
|
RT_ASSERT(cfg != RT_NULL);
|
|
|
|
|
|
|
|
uart = (struct stm32_uart *)serial->parent.user_data;
|
|
|
|
|
|
|
|
if (cfg->baud_rate == BAUD_RATE_9600)
|
|
|
|
USART_InitStructure.USART_BaudRate = 9600;
|
|
|
|
else if (cfg->baud_rate == BAUD_RATE_115200)
|
|
|
|
USART_InitStructure.USART_BaudRate = 115200;
|
|
|
|
|
|
|
|
if (cfg->data_bits == DATA_BITS_8)
|
|
|
|
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
|
|
|
|
|
|
|
|
if (cfg->stop_bits == STOP_BITS_1)
|
|
|
|
USART_InitStructure.USART_StopBits = USART_StopBits_1;
|
|
|
|
else if (cfg->stop_bits == STOP_BITS_2)
|
|
|
|
USART_InitStructure.USART_StopBits = USART_StopBits_2;
|
|
|
|
|
|
|
|
USART_InitStructure.USART_Parity = USART_Parity_No;
|
|
|
|
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
|
|
|
|
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
|
|
|
|
USART_Init(uart->uart_device, &USART_InitStructure);
|
|
|
|
|
|
|
|
/* Enable USART */
|
|
|
|
USART_Cmd(uart->uart_device, ENABLE);
|
|
|
|
/* enable interrupt */
|
|
|
|
USART_ITConfig(uart->uart_device, USART_IT_RXNE, ENABLE);
|
|
|
|
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_err_t stm32_control(struct rt_serial_device *serial, int cmd, void *arg)
|
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
RT_ASSERT(serial != RT_NULL);
|
|
|
|
uart = (struct stm32_uart *)serial->parent.user_data;
|
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case RT_DEVICE_CTRL_CLR_INT:
|
|
|
|
/* disable rx irq */
|
|
|
|
UART_DISABLE_IRQ(uart->irq);
|
|
|
|
break;
|
|
|
|
case RT_DEVICE_CTRL_SET_INT:
|
|
|
|
/* enable rx irq */
|
|
|
|
UART_ENABLE_IRQ(uart->irq);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32_putc(struct rt_serial_device *serial, char c)
|
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
RT_ASSERT(serial != RT_NULL);
|
|
|
|
uart = (struct stm32_uart *)serial->parent.user_data;
|
|
|
|
|
|
|
|
while (!(uart->uart_device->SR & USART_FLAG_TXE));
|
|
|
|
uart->uart_device->DR = c;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int stm32_getc(struct rt_serial_device *serial)
|
|
|
|
{
|
|
|
|
int ch;
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
RT_ASSERT(serial != RT_NULL);
|
|
|
|
uart = (struct stm32_uart *)serial->parent.user_data;
|
|
|
|
|
|
|
|
ch = -1;
|
|
|
|
if (uart->uart_device->SR & USART_FLAG_RXNE)
|
|
|
|
{
|
|
|
|
ch = uart->uart_device->DR & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct rt_uart_ops stm32_uart_ops =
|
|
|
|
{
|
|
|
|
stm32_configure,
|
|
|
|
stm32_control,
|
|
|
|
stm32_putc,
|
|
|
|
stm32_getc,
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(RT_USING_UART1)
|
|
|
|
/* UART1 device driver structure */
|
|
|
|
struct stm32_uart uart1 =
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
USART1,
|
2015-01-20 15:23:59 +08:00
|
|
|
USART1_IRQn,
|
2013-01-08 22:40:58 +08:00
|
|
|
};
|
2015-01-20 15:23:59 +08:00
|
|
|
struct rt_serial_device serial1;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
void USART1_IRQHandler(void)
|
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
uart = &uart1;
|
|
|
|
|
|
|
|
/* enter interrupt */
|
|
|
|
rt_interrupt_enter();
|
2015-01-21 12:36:34 +08:00
|
|
|
if (USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
|
2015-01-20 15:23:59 +08:00
|
|
|
{
|
|
|
|
rt_hw_serial_isr(&serial1, RT_SERIAL_EVENT_RX_IND);
|
|
|
|
/* clear interrupt */
|
|
|
|
USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
|
|
|
|
}
|
|
|
|
if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
|
|
|
|
{
|
|
|
|
/* clear interrupt */
|
|
|
|
USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* leave interrupt */
|
|
|
|
rt_interrupt_leave();
|
|
|
|
}
|
|
|
|
#endif /* RT_USING_UART1 */
|
|
|
|
|
|
|
|
#if defined(RT_USING_UART2)
|
|
|
|
/* UART2 device driver structure */
|
|
|
|
struct stm32_uart uart2 =
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
USART2,
|
2015-01-20 15:23:59 +08:00
|
|
|
USART2_IRQn,
|
2013-01-08 22:40:58 +08:00
|
|
|
};
|
2015-01-20 15:23:59 +08:00
|
|
|
struct rt_serial_device serial2;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
void USART2_IRQHandler(void)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
uart = &uart2;
|
|
|
|
|
|
|
|
/* enter interrupt */
|
|
|
|
rt_interrupt_enter();
|
2015-01-21 12:36:34 +08:00
|
|
|
if (USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
|
2015-01-20 15:23:59 +08:00
|
|
|
{
|
|
|
|
rt_hw_serial_isr(&serial2, RT_SERIAL_EVENT_RX_IND);
|
|
|
|
/* clear interrupt */
|
|
|
|
USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
|
|
|
|
}
|
|
|
|
if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
|
|
|
|
{
|
|
|
|
/* clear interrupt */
|
|
|
|
USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* leave interrupt */
|
|
|
|
rt_interrupt_leave();
|
|
|
|
}
|
|
|
|
#endif /* RT_USING_UART2 */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
#if defined(RT_USING_UART3)
|
|
|
|
/* UART3 device driver structure */
|
|
|
|
struct stm32_uart uart3 =
|
2014-08-12 18:22:04 +08:00
|
|
|
{
|
2015-01-20 15:23:59 +08:00
|
|
|
USART3,
|
|
|
|
USART3_IRQn,
|
2014-08-12 18:22:04 +08:00
|
|
|
};
|
2015-01-20 15:23:59 +08:00
|
|
|
struct rt_serial_device serial3;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
void USART3_IRQHandler(void)
|
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
|
|
|
|
uart = &uart3;
|
|
|
|
|
|
|
|
/* enter interrupt */
|
|
|
|
rt_interrupt_enter();
|
2015-01-21 12:36:34 +08:00
|
|
|
if (USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
|
2015-01-20 15:23:59 +08:00
|
|
|
{
|
|
|
|
rt_hw_serial_isr(&serial3, RT_SERIAL_EVENT_RX_IND);
|
|
|
|
/* clear interrupt */
|
|
|
|
USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
|
|
|
|
}
|
|
|
|
if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
|
|
|
|
{
|
|
|
|
/* clear interrupt */
|
|
|
|
USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* leave interrupt */
|
|
|
|
rt_interrupt_leave();
|
|
|
|
}
|
|
|
|
#endif /* RT_USING_UART3 */
|
2014-08-12 18:22:04 +08:00
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
static void RCC_Configuration(void)
|
|
|
|
{
|
|
|
|
#ifdef RT_USING_UART1
|
2015-01-20 15:23:59 +08:00
|
|
|
/* Enable UART1 GPIO clocks */
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_AHB1PeriphClockCmd(UART1_GPIO_RCC, ENABLE);
|
2015-01-20 15:23:59 +08:00
|
|
|
/* Enable UART1 clock */
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_APB2PeriphClockCmd(RCC_APBPeriph_UART1, ENABLE);
|
2015-01-20 15:23:59 +08:00
|
|
|
#endif /* RT_USING_UART1 */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_UART2
|
2015-01-20 15:23:59 +08:00
|
|
|
/* Enable UART2 GPIO clocks */
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_AHB1PeriphClockCmd(UART2_GPIO_RCC, ENABLE);
|
2015-01-20 15:23:59 +08:00
|
|
|
/* Enable UART2 clock */
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_APB1PeriphClockCmd(RCC_APBPeriph_UART2, ENABLE);
|
2015-01-20 15:23:59 +08:00
|
|
|
#endif /* RT_USING_UART1 */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_UART3
|
2015-01-20 15:23:59 +08:00
|
|
|
/* Enable UART3 GPIO clocks */
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_AHB1PeriphClockCmd(UART3_GPIO_RCC, ENABLE);
|
2015-01-20 15:23:59 +08:00
|
|
|
/* Enable UART3 clock */
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_APB1PeriphClockCmd(RCC_APBPeriph_UART3, ENABLE);
|
2015-01-20 15:23:59 +08:00
|
|
|
#endif /* RT_USING_UART3 */
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void GPIO_Configuration(void)
|
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
|
|
|
|
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
|
|
|
|
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
|
|
|
|
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_UART1
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Configure USART1 Rx/tx PIN */
|
|
|
|
GPIO_InitStructure.GPIO_Pin = UART1_GPIO_RX | UART1_GPIO_TX;
|
|
|
|
GPIO_Init(UART1_GPIO, &GPIO_InitStructure);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
/* Connect alternate function */
|
|
|
|
GPIO_PinAFConfig(UART1_GPIO, UART1_TX_PIN_SOURCE, GPIO_AF_USART1);
|
|
|
|
GPIO_PinAFConfig(UART1_GPIO, UART1_RX_PIN_SOURCE, GPIO_AF_USART1);
|
2015-01-20 15:23:59 +08:00
|
|
|
#endif /* RT_USING_UART1 */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_UART2
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Configure USART2 Rx/tx PIN */
|
2015-01-20 15:23:59 +08:00
|
|
|
GPIO_InitStructure.GPIO_Pin = UART2_GPIO_RX | UART2_GPIO_TX;
|
2014-04-25 18:37:06 +08:00
|
|
|
GPIO_Init(UART2_GPIO, &GPIO_InitStructure);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
/* Connect alternate function */
|
|
|
|
GPIO_PinAFConfig(UART2_GPIO, UART2_TX_PIN_SOURCE, GPIO_AF_USART2);
|
|
|
|
GPIO_PinAFConfig(UART2_GPIO, UART2_RX_PIN_SOURCE, GPIO_AF_USART2);
|
2015-01-20 15:23:59 +08:00
|
|
|
#endif /* RT_USING_UART2 */
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_UART3
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Configure USART3 Rx/tx PIN */
|
2014-12-30 14:18:05 +08:00
|
|
|
GPIO_InitStructure.GPIO_Pin = UART3_GPIO_TX | UART3_GPIO_RX;
|
2014-04-25 18:37:06 +08:00
|
|
|
GPIO_Init(UART3_GPIO, &GPIO_InitStructure);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
/* Connect alternate function */
|
2014-04-25 16:10:41 +08:00
|
|
|
GPIO_PinAFConfig(UART3_GPIO, UART3_TX_PIN_SOURCE, GPIO_AF_USART3);
|
|
|
|
GPIO_PinAFConfig(UART3_GPIO, UART3_RX_PIN_SOURCE, GPIO_AF_USART3);
|
2015-01-20 15:23:59 +08:00
|
|
|
#endif /* RT_USING_UART3 */
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
|
2015-01-21 12:36:34 +08:00
|
|
|
static void NVIC_Configuration(struct stm32_uart *uart)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
NVIC_InitTypeDef NVIC_InitStructure;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Enable the USART1 Interrupt */
|
2015-01-20 15:23:59 +08:00
|
|
|
NVIC_InitStructure.NVIC_IRQChannel = uart->irq;
|
|
|
|
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 3;
|
2014-04-25 18:37:06 +08:00
|
|
|
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
|
|
|
|
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
|
|
|
|
NVIC_Init(&NVIC_InitStructure);
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
int stm32_hw_usart_init(void)
|
2013-01-08 22:40:58 +08:00
|
|
|
{
|
2015-01-21 12:36:34 +08:00
|
|
|
struct stm32_uart *uart;
|
2015-01-20 15:23:59 +08:00
|
|
|
struct serial_configure config = RT_SERIAL_CONFIG_DEFAULT;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_Configuration();
|
|
|
|
GPIO_Configuration();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_UART1
|
2015-01-20 15:23:59 +08:00
|
|
|
uart = &uart1;
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
serial1.ops = &stm32_uart_ops;
|
|
|
|
serial1.config = config;
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
NVIC_Configuration(&uart1);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
/* register UART1 device */
|
|
|
|
rt_hw_serial_register(&serial1,
|
|
|
|
"uart1",
|
|
|
|
RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX,
|
|
|
|
uart);
|
|
|
|
#endif /* RT_USING_UART1 */
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
#ifdef RT_USING_UART2
|
|
|
|
uart = &uart2;
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
serial2.ops = &stm32_uart_ops;
|
|
|
|
serial2.config = config;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
NVIC_Configuration(&uart2);
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
/* register UART1 device */
|
|
|
|
rt_hw_serial_register(&serial2,
|
|
|
|
"uart2",
|
|
|
|
RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX,
|
|
|
|
uart);
|
|
|
|
#endif /* RT_USING_UART2 */
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
#ifdef RT_USING_UART3
|
|
|
|
uart = &uart3;
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
serial3.ops = &stm32_uart_ops;
|
|
|
|
serial3.config = config;
|
2014-04-25 18:37:06 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
NVIC_Configuration(&uart3);
|
2014-08-12 18:22:04 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
/* register UART3 device */
|
|
|
|
rt_hw_serial_register(&serial3,
|
|
|
|
"uart3",
|
|
|
|
RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX,
|
|
|
|
uart);
|
|
|
|
#endif /* RT_USING_UART3 */
|
2014-08-12 18:22:04 +08:00
|
|
|
|
2015-01-20 15:23:59 +08:00
|
|
|
return 0;
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
2015-01-20 15:23:59 +08:00
|
|
|
INIT_BOARD_EXPORT(stm32_hw_usart_init);
|