以下这段代码不能同时点亮LED2和LED3:
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOF, ENABLE);
GPIO_InitTypeDef GPIOF_InitStruct;
GPIOF_InitStruct.GPIO_Pin = GPIO_Pin_7;
GPIOF_InitStruct.GPIO_Pin = GPIO_Pin_8;
GPIOF_InitStruct.GPIO_Mode = GPIO_Mode_Out_PP;
GPIOF_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOF, &GPIOF_InitStruct);
GPIO_ResetBits(GPIOF, GPIO_Pin_7);
GPIO_ResetBits(GPIOF, GPIO_Pin_8);
该如何修改?同时让很多IO口同时又输出? |