nrf的引脚配置为何用推挽输出和上拉输入

2019-08-20 18:48发布

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;     //PB12上拉 防止W25X的干扰
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;    //推挽输出
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_Init(GPIOB, &GPIO_InitStructure); //初始化指定IO
  GPIO_SetBits(GPIOB,GPIO_Pin_12);//上拉   
  
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7|GPIO_Pin_8; //PG8 7 推挽   
  GPIO_Init(GPIOG, &GPIO_InitStructure);//初始化指定IO
  
GPIO_InitStructure.GPIO_Pin  = GPIO_Pin_6;   
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD; //PG6 输入  
GPIO_Init(GPIOG, &GPIO_InitStructure);
GPIO_ResetBits(GPIOG,GPIO_Pin_6|GPIO_Pin_7|GPIO_Pin_8);//PG6,7,8上拉
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
3条回答
Owen
1楼-- · 2019-08-20 19:16
常青藤0011 发表于 2017-4-19 21:28
输出的话它也有其他的输入方式呀,为何就选推挽啊

论坛里就有帖子讲I/O口工作模式的,为什么不搜一搜?
http://www.openedv.com/forum.php ... digest%26digest%3D1
正点原子
2楼-- · 2019-08-20 23:11
你认为应该怎么配置?
常青藤0011
3楼-- · 2019-08-20 23:53
 精彩回答 2  元偷偷看……

一周热门 更多>