打印
[STM32F1]

USART实现串口通讯

[复制链接]
1166|7
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
gaoyang9992006|  楼主 | 2016-3-28 19:42 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

STM32F10x 系列单片机中都包含了USART 模块,所谓USART,就是通用同步异步收发器。通用同步异步收发器(USART)提供了一种灵活的方法与使用工业标准NRZ异步串行数据格式的外部设备之间进行全双工数据交换。它支持同步单向通信和半双工单线通信,也支持LIN(局部互连网),智能卡协议和IrDA(红外数据组织)SIR ENDEC规范,以及调制解调器(CTS/RTS)操作。它还允许多处理器通信。


从前面的介绍可知USART模块功能非常的强大。这里我只简单讲讲如何用USART模块来实现标准EIA-232 串口通讯。


用过单片机的人肯定都接触过串口,设置串口无非就是设置波特率、数据位、停止位、奇偶校验位。发送接收也就三种基本方式,轮询、中断和DMA。STM32F10x 的USART 模块也不过如此。所以我重点讲讲我在调试代码时犯得各种错误,那些很容易得到的代码就不详细的讲解了。


首先说说我的硬件环境。还是那块神舟4号开发板,用的是串口2,对应的是USART2。默认情况下USART2是连接到IO端口A的,但是我这里需要将USART的管腿重定向到IO端口D上。具体的管腿的关系参见下表。这个表是从STM32参考手册上拷下来的。

初始化USART的代码很简单。USART2 连接到APB1 总线上了,先要打开USART2的时钟,然后设置波特率一类的参数。

USART_InitTypeDef USART_InitStructure;

RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
USART_InitStructure.USART_BaudRate = 9600;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
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(USART2, &USART_InitStructure );

这样设置了还不能使用。因为我们将USART2 重定向了。重定向操作需要写复用重映射和调试I/O配置寄存器(AFIO_MAPR)。GPIO_PinRemapConfig() 可以完成这项任务。

GPIO_PinRemapConfig(GPIO_Remap_USART2, ENABLE);

这样操作还不够。STM32参考手册上有这么一段话:

对寄存器AFIO_EVCR,AFIO_MAPR和AFIO_EXTICRX进行读写操作前,应当首先打开AFIO的时钟。参考第6.3.7节APB2外设时钟使能寄存器(RCC_APB2ENR)。

所以需要先打开AFIO的时钟。因此,USART2的重定向需要两步操作:

  • RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);  
  • GPIO_PinRemapConfig(GPIO_Remap_USART2, ENABLE);  

我原以为这样就能工作了,可是结果还是什么都没有输出。没办法只能继续研究。在读GPIO的相关章节时看到下图让我恍然大悟。


USART2的输入输出都是借用PD口管腿,PD 口的时钟却还没给。用到的几个IO 端口也没有设置相应的输入输出状态。在读到8.1.9 复用功能配置这一小节时发现了如下的表格。


按照上面给出的配置,写好程序:

GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD , ENABLE);
/* Configure USART Tx as alternate function push-pull */
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOD, &GPIO_InitStructure);
       
/* Configure USART Rx as input floating */
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
GPIO_Init(GPIOD, &GPIO_InitStructure);

再次测试,一切正常。

发送一个字符的函数可以这么写:

void UART_PutChar(USART_TypeDef* USARTx, uint8_t Data)
{
        while (USART_GetFlagStatus(USART2, USART_FLAG_TC) == RESET ) {};
        USART_SendData (USARTx, Data);
}
这个函数可以手工优化一下,里面的两个函数调用都可以去掉,甚至于这个函数可以用汇编来实现或者写成inline 函数。不过这里只是个示例代码,没有考虑这些。


发送字符串的函数如下:

void UART_PutStr (USART_TypeDef* USARTx, uint8_t *str)
{
    while (0 != *str)
    {
        UART_PutChar(USARTx, *str);
        str++;
    }
}
上面串口初始化的代码可以放到一个函数中:
void USART2_init(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;

        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD | RCC_APB2Periph_AFIO, ENABLE);
       
        /* Configure USART Tx as alternate function push-pull */
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOD, &GPIO_InitStructure);
       
        /* Configure USART Rx as input floating */
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
        GPIO_Init(GPIOD, &GPIO_InitStructure);
       
        GPIO_PinRemapConfig(GPIO_Remap_USART2, ENABLE);
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);

        USART_InitStructure.USART_BaudRate = 9600;
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
        USART_InitStructure.USART_StopBits = USART_StopBits_1;
        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(USART2, &USART_InitStructure );

    USART_Cmd(USART2, ENABLE);
}
接收字符的函数与发送字符的函数差不多,但是这种轮询方式效率很低,不建议使用。下次写一篇介绍如何用中断方式发送接收串口数据,中断方式的效率会高很多。


沙发
gaoyang9992006|  楼主 | 2016-3-28 19:43 | 只看该作者

这次讲讲利用串口收发中断来进行串口通讯。STM32 上为每个串口分配了一个中断。也就是说无论是发送完成还是收到数据或是数据溢出都产生同一个中断。程序需在中断处理函数中读取状态寄存器(USART_SR)来判断当前的是什么中断。下面的中断映像图给出了这些中断源是如何汇合成最终的中断信号的。图中也给出了如何控制每一个单独的中断源是否起作用。


另外,Cortex-M3 内核中还有个NVIC,可以控制这里的中断信号是否触发中断处理函数的执行,还有这些外部中断的级别。关于NVIC 可以参考《ARM CortexM3 权威指南》,里面讲解的非常详细。

简单的说,为了开启中断,我们需要如下的代码:

NVIC_InitTypeDef NVIC_InitStructure;
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
NVIC_Init(&NVIC_InitStructure);

USART_ITConfig(USART1, USART_IT_RXNE, ENABLE); //开启接收中断
USART_ITConfig(USART1, USART_IT_TXE, ENABLE); // 开启发送中断

这里多说一句,串口的发送中断有两个,分别是:

  • l发送数据寄存器空中断(TXE
  • l发送完成中断(TC

一般来说我们会使用发送数据寄存器空中断,用这个中断发送的效率会高一些。

中断处理函数的框架如下,如果检测到错误就清除错误,收到数了就处理。发完当前数据了就发下一个。

void USART1_IRQHandler(void)
{
    unsigned int data;

    if(USART1->SR & 0x0F)
    {
        // See if we have some kind of error, Clear interrupt   
        data = USART1->DR;
    }
    else if(USART1->SR & USART_FLAG_RXNE) //Receive Data Reg Full Flag
    {  
        data = USART1->DR;
        // 对收到的数据进行处理,或者干些其他的事  
    }
    else if(USART1->SR & USART_FLAG_TXE)
    {
        { // 可以发送数据了,如果没有数据需要发送,就在这里关闭发送中断
            USART1->DR =  something;        // Yes, Send character                     
        }                                          
    }  
}   


使用特权

评论回复
板凳
gaoyang9992006|  楼主 | 2016-3-28 19:48 | 只看该作者
下面给一个利用环形缓冲区的串口驱动程序。
#ifndef _COM_BUFFERED_H_
#define _COM_BUFFERED_H_

#define  COM1                   0
#define  COM2                   1

#define  COM_RX_BUF_SIZE        64                /* Number of characters in Rx ring buffer             */
#define  COM_TX_BUF_SIZE        64                /* Number of characters in Tx ring buffer             */

#define  COM_NO_ERR             0                /* Function call was successful                       */
#define  COM_BAD_CH             1                /* Invalid communications port channel                */
#define  COM_RX_EMPTY           2                /* Rx buffer is empty, no character available         */
#define  COM_TX_FULL            3                /* Tx buffer is full, could not deposit character     */
#define  COM_TX_EMPTY           4                /* If the Tx buffer is empty.                         */


/************************************************************
* function : COMGetCharB
* parameter: char port, port can be COM1 / COM2
* parameter: char* err   is a pointer to where an error code will be placed:
*                   *err is set to COM_NO_ERR   if a character is available
*                   *err is set to COM_RX_EMPTY if the Rx buffer is empty
*                   *err is set to COM_BAD_CH   if you have specified an invalid channel
* return   : char
* usage    : This function is called by your application to obtain a character from the communications
*               channel.
* changelog:
*************************************************************/
unsigned char  COMGetCharB (unsigned char ch, unsigned char *err);

/************************************************************
* function : COMPutCharB
* parameter: char port, port can be COM1 / COM2
* return   :    COMM_NO_ERR   if the function was successful (the buffer was not full)
*               COMM_TX_FULL  if the buffer was full
*               COMM_BAD_CH   if you have specified an incorrect channel

* usage    : This function is called by your application to send a character on the communications
*               channel.  The character to send is first inserted into the Tx buffer and will be sent by
*               the Tx ISR.  If this is the first character placed into the buffer, the Tx ISR will be
*               enabled.  If the Tx buffer is full, the character will not be sent (i.e. it will be lost)
* changelog:
*************************************************************/
unsigned char COMPutCharB (unsigned char port, unsigned char c);

/************************************************************
* function : COMBufferInit
* parameter:
* return   :   
* usage    : This function is called by your application to initialize the communications module.  You
*             must call this function before calling any other functions.
* changelog:
*************************************************************/
void  COMBufferInit (void);

/************************************************************
* function : COMBufferIsEmpty
* parameter: char port, port can be COM1 / COM2
* return   : char
* usage    : This function is called by your application to see
*            if any character is available from the communications channel.
*            If at least one character is available, the function returns
*            FALSE(0) otherwise, the function returns TRUE(1).
* changelog:
*************************************************************/
unsigned char  COMBufferIsEmpty (unsigned char port);

/************************************************************
* function : COMBufferIsFull
* parameter: char port, port can be COM1 / COM2
* return   : char
* usage    : This function is called by your application to see if any more characters can be placed
*             in the Tx buffer.  In other words, this function check to see if the Tx buffer is full.
*             If the buffer is full, the function returns TRUE otherwise, the function returns FALSE.
* changelog:
*************************************************************/
unsigned char COMBufferIsFull (unsigned char port);

#endif
/*
* file: com_buffered.c
* author: Li Yuan
* platform: STM32F107
* date: 2013-5-5
* version: 0.0.1
* description: UART Ring Buffer                           
**/

#include "stm32f10x_usart.h"
#include "com_buffered.h"

#define OS_ENTER_CRITICAL()     __set_PRIMASK(1)
#define OS_EXIT_CRITICAL()      __set_PRIMASK(0)   
   
/**
*        Enables Transmiter interrupt.
**/
static void COMEnableTxInt(unsigned char port)
{
        static USART_TypeDef* map[2] = {USART1, USART2};
        USART_ITConfig(map[port], USART_IT_TXE, ENABLE);       
}
/*
*********************************************************************************************************
*                                               DATA TYPES
*********************************************************************************************************
*/
typedef struct {
    short  RingBufRxCtr;                   /* Number of characters in the Rx ring buffer              */
    unsigned char  *RingBufRxInPtr;                 /* Pointer to where next character will be inserted        */
    unsigned char  *RingBufRxOutPtr;                /* Pointer from where next character will be extracted     */
    unsigned char   RingBufRx[COM_RX_BUF_SIZE];     /* Ring buffer character storage (Rx)                      */
    short  RingBufTxCtr;                   /* Number of characters in the Tx ring buffer              */
    unsigned char  *RingBufTxInPtr;                 /* Pointer to where next character will be inserted        */
    unsigned char  *RingBufTxOutPtr;                /* Pointer from where next character will be extracted     */
    unsigned char   RingBufTx[COM_TX_BUF_SIZE];     /* Ring buffer character storage (Tx)                      */
} COM_RING_BUF;

/*
*********************************************************************************************************
*                                            GLOBAL VARIABLES
*********************************************************************************************************
*/

COM_RING_BUF  COM1Buf;
COM_RING_BUF  COM2Buf;


/************************************************************
* function : COMGetCharB
* parameter: char port, port can be COM1 / COM2
* parameter: char* err   is a pointer to where an error code will be placed:
*                   *err is set to COM_NO_ERR   if a character is available
*                   *err is set to COM_RX_EMPTY if the Rx buffer is empty
*                   *err is set to COM_BAD_CH   if you have specified an invalid channel
* return   : char
* usage    : This function is called by your application to obtain a character from the communications
*               channel.
* changelog:
*************************************************************/
unsigned char  COMGetCharB (unsigned char port, unsigned char *err)
{
//    unsigned char cpu_sr;
   
    unsigned char c;
    COM_RING_BUF *pbuf;

    switch (port)
    {                                          /* Obtain pointer to communications channel */
        case COM1:
             pbuf = &COM1Buf;
             break;

        case COM2:
             pbuf = &COM2Buf;
             break;

        default:
             *err = COM_BAD_CH;
             return (0);
    }
    OS_ENTER_CRITICAL();
    if (pbuf->RingBufRxCtr > 0)                            /* See if buffer is empty                   */
    {                                                      
        pbuf->RingBufRxCtr--;                              /* No, decrement character count            */
        c = *pbuf->RingBufRxOutPtr++;                      /* Get character from buffer                */
        if (pbuf->RingBufRxOutPtr == &pbuf->RingBufRx[COM_RX_BUF_SIZE])
        {      
            pbuf->RingBufRxOutPtr = &pbuf->RingBufRx[0];   /* Wrap OUT pointer     */
        }
        OS_EXIT_CRITICAL();
        *err = COM_NO_ERR;
        return (c);
    } else {
        OS_EXIT_CRITICAL();
        *err = COM_RX_EMPTY;
        c    = 0;                                        /* Buffer is empty, return 0              */
        return (c);
    }
}


/************************************************************
* function : COMPutCharB
* parameter: char port, port can be COM1 / COM2
* return   :    COMM_NO_ERR   if the function was successful (the buffer was not full)
*               COMM_TX_FULL  if the buffer was full
*               COMM_BAD_CH   if you have specified an incorrect channel

* usage    : This function is called by your application to send a character on the communications
*               channel.  The character to send is first inserted into the Tx buffer and will be sent by
*               the Tx ISR.  If this is the first character placed into the buffer, the Tx ISR will be
*               enabled.  If the Tx buffer is full, the character will not be sent (i.e. it will be lost)
* changelog:
*            1.first implimented by liyuan 2010.11.5
*************************************************************/
unsigned char COMPutCharB (unsigned char port, unsigned char c)
{
//    unsigned char cpu_sr;
   
    COM_RING_BUF *pbuf;
    switch (port)
    {                                                     /* Obtain pointer to communications channel */
        case COM1:
             pbuf = &COM1Buf;
             break;

        case COM2:
             pbuf = &COM2Buf;
             break;

        default:
             return (COM_BAD_CH);
    }

    OS_ENTER_CRITICAL();
    if (pbuf->RingBufTxCtr < COM_TX_BUF_SIZE) {           /* See if buffer is full                    */
        pbuf->RingBufTxCtr++;                              /* No, increment character count            */
        *pbuf->RingBufTxInPtr++ = c;                       /* Put character into buffer                */
        if (pbuf->RingBufTxInPtr == &pbuf->RingBufTx[COM_TX_BUF_SIZE]) { /* Wrap IN pointer           */
            pbuf->RingBufTxInPtr = &pbuf->RingBufTx[0];
        }
        if (pbuf->RingBufTxCtr == 1) {                     /* See if this is the first character       */
            COMEnableTxInt(port);                          /* Yes, Enable Tx interrupts                */
            OS_EXIT_CRITICAL();
        } else {
            OS_EXIT_CRITICAL();
        }
        return (COM_NO_ERR);
    } else {
        OS_EXIT_CRITICAL();
        return (COM_TX_FULL);
    }
}

/************************************************************
* function : COMBufferInit
* parameter:
* return   :   
* usage    : This function is called by your application to initialize the communications module.  You
*             must call this function before calling any other functions.
* changelog:
*************************************************************/
void  COMBufferInit (void)
{
    COM_RING_BUF *pbuf;

    pbuf                  = &COM1Buf;                     /* Initialize the ring buffer for COM0     */
    pbuf->RingBufRxCtr    = 0;
    pbuf->RingBufRxInPtr  = &pbuf->RingBufRx[0];
    pbuf->RingBufRxOutPtr = &pbuf->RingBufRx[0];
    pbuf->RingBufTxCtr    = 0;
    pbuf->RingBufTxInPtr  = &pbuf->RingBufTx[0];
    pbuf->RingBufTxOutPtr = &pbuf->RingBufTx[0];

    pbuf                  = &COM2Buf;                     /* Initialize the ring buffer for COM1     */
    pbuf->RingBufRxCtr    = 0;
    pbuf->RingBufRxInPtr  = &pbuf->RingBufRx[0];
    pbuf->RingBufRxOutPtr = &pbuf->RingBufRx[0];
    pbuf->RingBufTxCtr    = 0;
    pbuf->RingBufTxInPtr  = &pbuf->RingBufTx[0];
    pbuf->RingBufTxOutPtr = &pbuf->RingBufTx[0];
}

/************************************************************
* function : COMBufferIsEmpty
* parameter: char port, port can be COM1 / COM2
* return   : char
* usage    : This function is called by your application to see
*            if any character is available from the communications channel.
*            If at least one character is available, the function returns
*            FALSE(0) otherwise, the function returns TRUE(1).
* changelog:
*************************************************************/
unsigned char  COMBufferIsEmpty (unsigned char port)
{
//    unsigned char cpu_sr;
   
    unsigned char empty;
    COM_RING_BUF *pbuf;
    switch (port)
    {                                                     /* Obtain pointer to communications channel */
        case COM1:
             pbuf = &COM1Buf;
             break;

        case COM2:
             pbuf = &COM2Buf;
             break;

        default:
             return (1);
    }
    OS_ENTER_CRITICAL();
    if (pbuf->RingBufRxCtr > 0)
    {                                                      /* See if buffer is empty                   */
        empty = 0;                                         /* Buffer is NOT empty                      */
    }
    else
    {
        empty = 1;                                         /* Buffer is empty                          */
    }
    OS_EXIT_CRITICAL();
    return (empty);
}


/************************************************************
* function : COMBufferIsFull
* parameter: char port, port can be COM1 / COM2
* return   : char
* usage    : This function is called by your application to see if any more characters can be placed
*             in the Tx buffer.  In other words, this function check to see if the Tx buffer is full.
*             If the buffer is full, the function returns TRUE otherwise, the function returns FALSE.
* changelog:
*************************************************************/
unsigned char COMBufferIsFull (unsigned char port)
{
//    unsigned char cpu_sr;
   
    char full;
    COM_RING_BUF *pbuf;
    switch (port)
    {                                                     /* Obtain pointer to communications channel */
        case COM1:
             pbuf = &COM1Buf;
             break;

        case COM2:
             pbuf = &COM2Buf;
             break;

        default:
             return (1);
    }
    OS_ENTER_CRITICAL();
    if (pbuf->RingBufTxCtr < COM_TX_BUF_SIZE) {           /* See if buffer is full                    */
        full = 0;                                      /* Buffer is NOT full                       */
    } else {
        full = 1;                                       /* Buffer is full                           */
    }
    OS_EXIT_CRITICAL();
    return (full);
}


// This function is called by the Rx ISR to insert a character into the receive ring buffer.
static void  COMPutRxChar (unsigned char port, unsigned char c)
{
    COM_RING_BUF *pbuf;

    switch (port)
    {                                                     /* Obtain pointer to communications channel */
        case COM1:
             pbuf = &COM1Buf;
             break;

        case COM2:
             pbuf = &COM2Buf;
             break;

        default:
             return;
    }
    if (pbuf->RingBufRxCtr < COM_RX_BUF_SIZE) {           /* See if buffer is full                    */
        pbuf->RingBufRxCtr++;                              /* No, increment character count            */
        *pbuf->RingBufRxInPtr++ = c;                       /* Put character into buffer                */
        if (pbuf->RingBufRxInPtr == &pbuf->RingBufRx[COM_RX_BUF_SIZE]) { /* Wrap IN pointer           */
            pbuf->RingBufRxInPtr = &pbuf->RingBufRx[0];
        }
    }
}


// This function is called by the Tx ISR to extract the next character from the Tx buffer.
//    The function returns FALSE if the buffer is empty after the character is extracted from
//    the buffer.  This is done to signal the Tx ISR to disable interrupts because this is the
//    last character to send.
static unsigned char COMGetTxChar (unsigned char port, unsigned char *err)
{
    unsigned char c;
    COM_RING_BUF *pbuf;

    switch (port)
    {                                          /* Obtain pointer to communications channel */
        case COM1:
             pbuf = &COM1Buf;
             break;

        case COM2:
             pbuf = &COM2Buf;
             break;

        default:
             *err = COM_BAD_CH;
             return (0);
    }
    if (pbuf->RingBufTxCtr > 0) {                          /* See if buffer is empty                   */
        pbuf->RingBufTxCtr--;                              /* No, decrement character count            */
        c = *pbuf->RingBufTxOutPtr++;                      /* Get character from buffer                */
        if (pbuf->RingBufTxOutPtr == &pbuf->RingBufTx[COM_TX_BUF_SIZE])
        {     
            pbuf->RingBufTxOutPtr = &pbuf->RingBufTx[0];   /* Wrap OUT pointer     */
        }
        *err = COM_NO_ERR;
        return (c);                                        /* Characters are still available           */
    } else {
        *err = COM_TX_EMPTY;
        return (0);                                      /* Buffer is empty                          */
    }
}


void USART1_IRQHandler(void)
{
    unsigned int data;
    unsigned char err;

    if(USART1->SR & 0x0F)
    {
        // See if we have some kind of error   
        // Clear interrupt (do nothing about it!)   
        data = USART1->DR;
    }
    else if(USART1->SR & USART_FLAG_RXNE) //Receive Data Reg Full Flag
    {  
        data = USART1->DR;
        COMPutRxChar(COM1, data);                    // Insert received character into buffer     
    }
    else if(USART1->SR & USART_FLAG_TXE)
    {
        data = COMGetTxChar(COM1, &err);             // Get next character to send.               
        if (err == COM_TX_EMPTY)
        {                                            // Do we have anymore characters to send ?   
                                                     // No,  Disable Tx interrupts               
            //USART_ITConfig(USART1, USART_IT_TXE| USART_IT_TC, ENABLE);
                        USART1->CR1 &= ~USART_FLAG_TXE | USART_FLAG_TC;
        }
        else
        {
            USART1->DR = data;        // Yes, Send character                     
        }                                          
    }  
}   

void USART2_IRQHandler(void)
{
    unsigned int data;
    unsigned char err;

    if(USART2->SR & 0x0F)
    {
        // See if we have some kind of error   
        // Clear interrupt (do nothing about it!)   
        data = USART2->DR;
    }
    else if(USART2->SR & USART_FLAG_RXNE) //Receive Data Reg Full Flag
    {  
        data = USART2->DR;
        COMPutRxChar(COM2, data);                    // Insert received character into buffer     
    }
    else if(USART2->SR & USART_FLAG_TXE)
    {
        data = COMGetTxChar(COM2, &err);             // Get next character to send.               
        if (err == COM_TX_EMPTY)
        {                                            // Do we have anymore characters to send ?   
                                                     // No,  Disable Tx interrupts               
            //USART_ITConfig(USART2, USART_IT_TXE| USART_IT_TC, ENABLE);
                        USART2->CR1 &= ~USART_FLAG_TXE | USART_FLAG_TC;
        }
        else
        {
            USART2->DR = data;        // Yes, Send character                     
        }                                          
    }  
}


使用特权

评论回复
地板
gaoyang9992006|  楼主 | 2016-3-28 19:50 | 只看该作者
下面给个例子主程序,来演示如何使用上面的串口驱动代码。
#include "misc.h"
#include "stm32f10x.h"
#include "com_buffered.h"

void UART_PutStrB (unsigned char port, uint8_t *str)
{
    while (0 != *str)
    {
        COMPutCharB(port, *str);
        str++;
    }
}

void USART1_Init(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;

        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_USART1, ENABLE);
       
        /* Configure USART Tx as alternate function push-pull */
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStructure);
       
        /* Configure USART Rx as input floating */
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
        GPIO_Init(GPIOA, &GPIO_InitStructure);

        USART_InitStructure.USART_BaudRate = 9600;
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
        USART_InitStructure.USART_StopBits = USART_StopBits_1;
        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(USART1, &USART_InitStructure );

        USART_Cmd(USART1, ENABLE);

        NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
        NVIC_Init(&NVIC_InitStructure);
}

void USART2_Init(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;

        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD | RCC_APB2Periph_AFIO, ENABLE);
       
        /* Configure USART Tx as alternate function push-pull */
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOD, &GPIO_InitStructure);
       
        /* Configure USART Rx as input floating */
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
        GPIO_Init(GPIOD, &GPIO_InitStructure);
       
        GPIO_PinRemapConfig(GPIO_Remap_USART2, ENABLE);
        RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);

        USART_InitStructure.USART_BaudRate = 9600;
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
        USART_InitStructure.USART_StopBits = USART_StopBits_1;
        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(USART2, &USART_InitStructure );

        USART_Cmd(USART2, ENABLE);

        NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
        NVIC_Init(&NVIC_InitStructure);
}


int main(void)
{
        unsigned char c;
        unsigned char err;
       
        USART1_Init();
        USART2_Init();       
        COMBufferInit();
        USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
        USART_ITConfig(USART2, USART_IT_RXNE, ENABLE);

        UART_PutStrB(COM1, "Hello World!\n");
        for(;;)
        {
                c = COMGetCharB(COM1, &err);
                if(err == COM_NO_ERR)
                {
                        COMPutCharB(COM1, c);
                }
        }       
}


使用特权

评论回复
5
稳稳の幸福| | 2016-3-28 21:17 | 只看该作者
NVIC 依照优先级处理所有支持的异常,所有异常在“处理器模式”处理。NVIC 结构支持32(IRQ[31:0]) 个离散中断,每个中断可以支持 4 级离散中断优先级。所有的中断和大多数系统异常可以配置为不同优先级。当中断发生时,NVIC 将比较新中断与当前中断的优先级,如果新中断优先级高,则立即处理新中断。当接受任何中断时,ISR的开始地址可从内存的向量表中取得。不需要确定哪个中断被响应,也不要软件分配相关中断服务程序(ISR)的开始地址。当获取中断入口地址时,NVIC 将自动保存处理状态到栈中,包括以下寄存器“PC, PSR, LR, R0~R3, R12” 的值。在ISR结束时,NVIC 将从栈中恢复相关寄存器的值,进行正常操作,因此花费少量且确定的时间处理中断请求。NVIC 支持末尾连锁 ”TailChaining”,有效处理背对背中断 ”back-to-back interrupts”,即无需保存和恢复当前状态从而减少在切换当前ISR时的延迟时间。NVIC 还支持迟到 “Late Arrival”,改善同时发生的ISR的效率。当较高优先级中断请求发生在当前ISR开始执行之前(保持处理器状态和获取起始地址阶段),NVIC 将立即处理更高优先级的中断,从而提高了实时性。

使用特权

评论回复
6
豆腐块| | 2016-3-28 21:36 | 只看该作者
一般来说我们会使用发送数据寄存器空中断,用这个中断发送的效率会高一些

使用特权

评论回复
7
gaoyang9992006|  楼主 | 2016-3-28 22:37 | 只看该作者
本文主要 讨论了其中的一种方法,大家都知道实现串口的方法,以及形式太多了。

使用特权

评论回复
8
yklstudent| | 2016-3-29 09:19 | 只看该作者
楼主的代码结构挺好的,学习下

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

认证:西安公路研究院南京院
简介:主要工作从事监控网络与通信网络设计,以及从事基于嵌入式的通信与控制设备研发。擅长单片机嵌入式系统物联网设备开发,音频功放电路开发。

1909

主题

15687

帖子

204

粉丝