野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 15805|回复: 1

STM32串口管脚问题

[复制链接]
发表于 2015-1-26 00:32:49 | 显示全部楼层 |阅读模式
在STM32的串口管脚配置中(本人使用ISO-MINI开发板)
USB串口管脚为A9与A10
捕获.JPG
于是在串口实验中配置串口时配置A9与A10
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;

RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, 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);

但是我有个疑问若此时需要用到GPIOA的其他管脚如:需要A4推挽输出
在这里可以插入
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4;
GPIO_Init(GPIOA, &GPIO_InitStructure);

串口输出是好像没有指定是哪一个管脚
与USB相连的是A9
PS:这个实验可以运行

串口通信时是如何识别管脚的???????????????????????
通信时A9与A4的状态一样吗(两者同为推挽输出)??????????????????????????
求大神指教!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


回复

使用道具 举报

发表于 2015-1-26 09:06:36 | 显示全部楼层
因为usart1默认使用pa9 pa10引脚
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-25 01:42 , Processed in 0.029357 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表