没用过库 第一次用库点stm32f4的灯失败了清指点谢谢

2019-07-21 05:22发布

硬件连接 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); }



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