硬件连接 PF10 接灯 PF10=0 灯亮
程序:
int main(void)
{
LED_Init();
GPIOF->ODR=0x0; //或者 GPIO_ResetBits(GPIOF,GPIO_Pin_10 ); 均没点亮 库是从开发板 的库
while(1)
{
}
}
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOF, &GPIO_InitStructure);
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
---------------------------------
是置低 灯才会亮 。 实际上 GPIOA 的脚没有被置低 。我猜有无可能是库的问题或者是编译器的问题 。
一周热门 更多>