2

我试图让usart在我的stm32f0-discovery上工作,但现在我发现关于这种“缺乏”的文档有没有人有任何usart为stm32f050工作的例子?

谢谢。

巴特·特尼森

4

1 回答 1

10

经过两天在互联网上搜索后,好的。我找到了这段小代码,并设法让它工作:

  USART_InitTypeDef USART_InitStructure;
  GPIO_InitTypeDef GPIO_InitStructure;

  RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE);

  RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);

  GPIO_PinAFConfig(GPIOA, GPIO_PinSource2, GPIO_AF_1);
  GPIO_PinAFConfig(GPIOA, GPIO_PinSource3, GPIO_AF_1);

  //Configure USART2 pins:  Rx and Tx ----------------------------
  GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_2 | GPIO_Pin_3;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
  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(USART2, &USART_InitStructure);

  USART_Cmd(USART2,ENABLE);

  while(1)
  {
   while (USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET);

   USART_SendData(USART2, 'X');
  }
}

*注意:此 uart 使用引脚 PA2 和 PA3(RX 和 TX)。

当 uart 的 sendbuffer 的缓冲区为空时,它会发送一个 X。更好的是,这段代码只使用了 stm32f0xx.h 文件。所以它去掉了任何不必要的部分。

希望有人也可以使用它,因为我花了很多精力才找到这个简单的代码。也许有一天我会写一篇关于使用 stm32f0 进行 uart 编程的指南。

*编辑:

我确实写了一篇关于 usart 的教程。它可以在这里找到:

教程 usart stm32f0 希望这可以帮助很多人。

于 2013-02-07T10:17:29.613 回答