野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 15967|回复: 5

F103VET6的USART3-D8-D9引脚问题

[复制链接]
发表于 2015-6-9 14:57:05 | 显示全部楼层 |阅读模式
QQ截图20150609145505.jpg
文档里D8、D9可以作为USART使用,但是我初始化之后D8一直是低电平,不能输出
初始化代码如下:
  1. void usart_init(void)
  2. {
  3.         GPIO_InitTypeDef GPIO_InitStructure;
  4.         USART_InitTypeDef USART_InitStructure;
  5.        
  6.         RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD, ENABLE);
  7.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
  8.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
  9.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  10.         GPIO_Init(GPIOD, &GPIO_InitStructure);
  11.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  12.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
  13.         GPIO_Init(GPIOD, &GPIO_InitStructure);
  14.        
  15.        
  16.         RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3,ENABLE);       
  17.         USART_InitStructure.USART_BaudRate = 115200;
  18.         USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  19.         USART_InitStructure.USART_StopBits = USART_StopBits_1;
  20.         USART_InitStructure.USART_Parity = USART_Parity_No ;
  21.         USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  22.         USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
  23.        
  24.         USART_Init(USART3, &USART_InitStructure);
  25.         USART_Cmd(USART3, ENABLE);
  26. }
复制代码


回复

使用道具 举报

发表于 2015-6-9 15:01:59 | 显示全部楼层
http://www.firebbs.cn/thread-8673-1-1.html
楼主可以参考例程
usart3默认是在PB10 PB11的
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-6-9 15:10:20 | 显示全部楼层
亽亼 发表于 2015-6-9 15:01
http://www.firebbs.cn/thread-8673-1-1.html
楼主可以参考例程
usart3默认是在PB10 PB11的

QAQ 板子上画的是D8 D9  我试的其他引脚都没问题
回复 支持 反对

使用道具 举报

发表于 2015-6-9 15:14:39 | 显示全部楼层
你去看看IO的重映射问题就明白了,D8 D9不是usart3默认引脚,需要IO口重映射才可以用的
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-6-9 15:17:26 | 显示全部楼层
亽亼 发表于 2015-6-9 15:14
你去看看IO的重映射问题就明白了,D8 D9不是usart3默认引脚,需要IO口重映射才可以用的

有重映射相关的教程吗,谢谢
回复 支持 反对

使用道具 举报

发表于 2015-6-9 15:18:50 | 显示全部楼层
stm32技术手册里边最官方了
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-24 03:20 , Processed in 0.031295 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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