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上拉
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。