|
本帖最后由 huanggang92 于 2015-5-7 14:12 编辑 各位高手,最近接触stm32f107vc 这个板子,学习串口通信,可是调试助手收到的是乱码,波特率都检查过了,下面是我的程序,希望各位能帮助一下菜鸟,非常感谢! #include "stm32f10x.h" #include "bsp.h" main() { USART1_Config(); printf("\r\n 欢迎使用STM32 开发板 \r\n"); for(;;) { } } #include "bsp.h" void USART1_Config(void) { GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO|RCC_APB2Periph_USART1, ENABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; GPIO_Init(GPIOA, &GPIO_InitStructure); USART_InitStructure.USART_BaudRate =115200; 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); } int fputc(int ch, FILE *f) { /* 发送一个字节数据到USART1 */ USART_SendData(USART1, (uint8_t) ch); /* 等待发送完毕 */ while (USART_GetFlagStatus(USART1, USART_FLAG_TC) == RESET); return (ch); } int fgetc(FILE *f) { /* 等待串口1输入数据 */ while (USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == RESET); return (int)USART_ReceiveData(USART1); } |
option选项卡配置
option选项卡配置
option选项卡配置
option选项卡配置
RVMDK(uv4).zip
下载65.14 KB, 下载次数: 1, 下载积分: ST金币 -1
工程
微信公众号
手机版
微库已经勾了,我又 在main函数里面加入了接受语句
if(USART_GetFlagStatus(USART1, USART_FLAG_RXNE) == SET)
{ch=USART_ReceiveData(USART1);
printf("%c",ch) ;
}
接收是正常的,但是发送到电脑一直是乱码
只输出英文,数字也不行。 但是接收数据后返回串口打印可以。