大学生
最后登录1970-1-1
在线时间 小时
注册时间2014-10-31
|
在STM32的串口管脚配置中(本人使用ISO-MINI开发板)
USB串口管脚为A9与A10
于是在串口实验中配置串口时配置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的状态一样吗(两者同为推挽输出)??????????????????????????
求大神指教!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|