gpt4 book ai didi

discovery - stm32f0串口编程

转载 作者:行者123 更新时间:2023-12-01 14:59:08 35 4
gpt4 key购买 nike

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

谢谢。

巴特特尼森

最佳答案

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

  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 的教程。它可以在这里找到:

Tutorial usart stm32f0 希望这对很多人有帮助。

关于discovery - stm32f0串口编程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14706314/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com