红外遥控的程序小疑问

2019-08-14 18:33发布

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;                                 //PA1 输入
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;                 //上拉输入
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStructure);
        GPIO_SetBits(GPIOA,GPIO_Pin_1);        //初始化GPIOA1       
这个配置不是配置成输入吗
为何还能GPIO_SetBits(GPIOA,GPIO_Pin_1);        这样写有何意义


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