小弟初学STM32,串口问题求教

2019-08-16 21:58发布

小弟初学STM32,在学到串口章节的时候,发现一个问题。例程里将uint16_t格式的USART_ReceiveData函数返回值赋给了u8格式的res变量。又将res作为入口参数给了 USART_SendData(USART_TypeDef* USARTx, uint16_t Data)函数,可是此函数的入口参数也是uint16_t格式的,这样不会出现错误吗?代码已贴在底部,往各位大佬指点。


void USART2_IRQHandler()
{
        u8 res;
        if(USART_GetITStatus(USART1,USART_IT_RXNE))
        {
                res=USART_ReceiveData(USART1);
                USART_SendData(USART1,res);
        }
}


uint16_t USART_ReceiveData(USART_TypeDef* USARTx)
{
  /* Check the parameters */
  assert_param(IS_USART_ALL_PERIPH(USARTx));

  /* Receive Data */
  return (uint16_t)(USARTx->DR & (uint16_t)0x01FF);
}

/**
  * @brief  Transmits break characters.
  * @param  USARTx: Select the USART or the UART peripheral.
  *   This parameter can be one of the following values:
  *   USART1, USART2, USART3, UART4 or UART5.
  * @retval None
  */
void USART_SendBreak(USART_TypeDef* USARTx)
{
  /* Check the parameters */
  assert_param(IS_USART_ALL_PERIPH(USARTx));

  /* Send break characters */
  USARTx->CR1 |= CR1_SBK_Set;
}


void USART_SendData(USART_TypeDef* USARTx, uint16_t Data)
{
  /* Check the parameters */
  assert_param(IS_USART_ALL_PERIPH(USARTx));
  assert_param(IS_USART_DATA(Data));

  /* Transmit Data */
  USARTx->DR = (Data & (uint16_t)0x01FF);
}

/**
  * @brief  Returns the most recent received data by the USARTx peripheral.
  * @param  USARTx: Select the USART or the UART peripheral.
  *   This parameter can be one of the following values:
  *   USART1, USART2, USART3, UART4 or UART5.
  * @retval The received data.
  */
uint16_t USART_ReceiveData(USART_TypeDef* USARTx)
{
  /* Check the parameters */
  assert_param(IS_USART_ALL_PERIPH(USARTx));

  /* Receive Data */
  return (uint16_t)(USARTx->DR & (uint16_t)0x01FF);
}


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答
yyx112358
1楼-- · 2019-08-17 02:42
本帖最后由 yyx112358 于 2017-7-20 16:34 编辑

DR寄存器实际上只有低9位有效,位8是奇偶校验不是数据,所以用u8来接收没问题,当然你改成u16也行
QQ截图20170720162906.jpg

pkzz021
2楼-- · 2019-08-17 06:05
没有人吗
pkzz021
3楼-- · 2019-08-17 11:03
yyx112358 发表于 2017-7-20 16:32
DR寄存器实际上只有低9位有效,位8是奇偶校验不是数据,所以用u8来接收没问题,当然你改成u16也行

万分感谢!

一周热门 更多>