管脚问题

2019-10-15 19:20发布

void LED_Init(void)
{

GPIO_InitTypeDef  GPIO_InitStructure;
       
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOE, ENABLE);         //ê1ÄüPB,PE¶Ë¿úê±Öó
       
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;                               
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;                
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;                 
GPIO_Init(GPIOB, &GPIO_InitStructure);                                       
GPIO_SetBits(GPIOB,GPIO_Pin_5);                                                 

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;                             
GPIO_Init(GPIOE, &GPIO_InitStructure);                                           
GPIO_SetBits(GPIOE,GPIO_Pin_5);                                                   
}

红 {MOD}字体这部分代码,对于管脚的推输出和速度配置就不用再次设置了吗?
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;                  
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;       

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。