我尝试按照此链接的答案配置我的STM32F0发现板的USART: stm32f0 uart programming
我使用USART2将数据发送到我的电脑,波特率9600和115200都尝试过。
我从'0'发送字符 - > '9'到PC但我收到'cg3fe2d'和一些看不见的字符总是,似乎有一些规定,有人可以帮忙吗?
我的STM32F0配置为使用内部osc,48MHz。
我的参考代码如下:
void test_uart()
{
USART_InitTypeDef USART_InitStructure;
GPIO_InitTypeDef GPIO_InitStructure;
uint16_t usart_data;
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, 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);
//Configure USART2 setting: ----------------------------
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);
usart_data = '0';
while(1)
{
while (USART_GetFlagStatus(USART2, USART_FLAG_TXE) == RESET);
if (usart_data > '9')
usart_data = '0';
USART_SendData(USART2, usart_data++);
}
}
答案 0 :(得分:0)
我怀疑这与图书馆有关的问题与时钟有所不同。特别是如果您使用不同的波特率获得相同的输出。
你需要告诉图书馆你目前的时钟是什么吗?
答案 1 :(得分:0)
问题已经解决,我非常感谢您的帮助,我想与您分享结果。原因是我使用的是USBtoRS232,我使用3根线将它直接连接到发现板,我不知道RS232使用12V,这是根本原因。所以在我使用RS232适配器后,问题解决了。再次感谢大家