STM32F4xx的GPIOA.9和GPIOA.10口配制成复用串口功能时,两个IO口都配置成了复用推挽上拉输出,但RX是输入啊?

2019-07-20 15:55发布

STM32F4xx的GPIOA.9和GPIOA.10口配制成复用串口功能时,怎么知道哪个IO口是输入输出的?
GPIO_InitStruct.GPIO_Pin= GPIO_Pin_9;
GPIO_InitStruct.GPIO_Mode=GPIO_Mode_AF;    
GPIO_InitStruct.GPIO_Speed=GPIO_Fast_Speed;   
GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;   
GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;     
GPIO_Init(GPIOA,&GPIO_InitStruct);


GPIO_InitStruct.GPIO_Pin= GPIO_Pin_10;
GPIO_InitStruct.GPIO_Mode=GPIO_Mode_AF; 
GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;   
GPIO_Init(GPIOA,&GPIO_InitStruct);

GPIO_PinAFConfig(GPIOA,GPIO_PinSource9,GPIO_AF_USART1);
GPIO_PinAFConfig(GPIOA,GPIO_PinSource10,GPIO_AF_USART1);

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。