注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
北北的个人空间 https://home.eeworld.com.cn/space-uid-348360.html [收藏] [复制] [分享] [RSS]
日志

STM32F103学习笔记---关于GPIO的设置

已有 607 次阅读2016-2-16 19:17 |个人分类:STM32| GPIO

1. 关于初始化某一IO口的代码。

  举例说明:
  GPIO_InitTypeDef GPIO_InitStructure;
   /* Configure SC_USART Tx as alternate function open-drain */
  GPIO_InitStructure.GPIO_Pin           = SC_USART_TxPin;
  //GPIO_InitStructure.GPIO_Speed  = GPIO_Speed_10MHz;
  GPIO_InitStructure.GPIO_Mode           = GPIO_Mode_AF_OD;
  GPIO_Init(SC_USART_GPIO, &GPIO_InitStructure);

  若省略上面注释掉的代码,则观看IO寄存器发现该IO口被设置为输入模式,而不是我们期望的复用开漏输出模式
评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章