官方stm32f401vc discovery板调试usart1,引脚接入PA9和PA10就是没调通

2019-07-21 00:31发布

  是不是官方板的问题呢,程序看过对比过好多次了,和407的没多大出入的,407的就行,这块401的就不行。这块板的串口开发官方也没例子程序,只有io操作的,奇怪得很。 有遇到并解决过这个问题的大牛支持下。谢谢
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
10条回答
飞鱼爱上鸟
1楼-- · 2019-07-22 05:55
[mw_shl_code=c,true]#include "usart.h" void USART1_Config() { GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure; RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA , ENABLE); //?ò??PE?±?? RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2 , ENABLE); //?ò???®???±?? //Tx GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; //?è?????????? GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz; //IO·?×?????50MHz GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; //?è?????????????? GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_Init(GPIOA, &GPIO_InitStructure); //Rx GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN; //?è?????????? GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL; GPIO_Init(GPIOA, &GPIO_InitStructure); GPIO_PinAFConfig(GPIOA,GPIO_PinSource2,GPIO_AF_USART2); GPIO_PinAFConfig(GPIOA,GPIO_PinSource3,GPIO_AF_USART2); 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); } int fputc(int ch ,FILE *f) { USART_SendData(USART2, (unsigned char)ch); while(USART_GetFlagStatus(USART2,USART_FLAG_TC)!=SET); return(ch); } void USART_Send(uint8_t *f) { while(USART_GetFlagStatus(USART2,USART_FLAG_TC)!=SET); USART_SendData(USART2, *f); f++; } void USART_Send_bate(uint8_t bate) { while(USART_GetFlagStatus(USART2,USART_FLAG_TC)!=SET); USART_SendData(USART2, bate); } 需要勾选use MicroLIB 然后主程序可以直接使用printf输出[/mw_shl_code]
飞鱼爱上鸟
2楼-- · 2019-07-22 06:12
回复【8楼】飞鱼爱上鸟:
---------------------------------
为什么我的注释全是乱码    ????
yantt11
3楼-- · 2019-07-22 08:36
 精彩回答 2  元偷偷看……
yantt11
4楼-- · 2019-07-22 09:49
现在问题已经解决,去掉板子上的 C54 之后,UART1 正常。
硬件工程师说是 电容充放电影响了串口的波形。

一周热门 更多>