Stm32f103vc 在使用PA15的时候不能输出

2019-08-18 20:31发布

void LED_Init(void)
{

GPIO_InitTypeDef  GPIO_InitStructure;

RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO, ENABLE);         //ê1ÄüPB,PE¶Ë¿úê±Öó
GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE);  
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_15;                                 //LED0-->PB.5 ¶Ë¿úÅäÖÃ
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;                  //íÆíìêä3ö
// GPIO_Init(GPIOA, &GPIO_InitStructure);                                         //¸ù¾Yé趨2Îêy3õê¼»ˉGPIOB.5
//GPIO_ResetBits(GPIOA,GPIO_Pin_15);                                                 //PB.5 êä3ö¸ß

//GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;                             //LED1-->PE.5 ¶Ë¿úÅäÖÃ, íÆíìêä3ö
GPIO_Init(GPIOA, &GPIO_InitStructure);                                           //íÆíìêä3ö £¬IO¿úËù¶èÎa50MHz
// GPIO_SetBits(GPIOA,GPIO_Pin_15);                                                  //PE.5 êä3ö¸ß
}


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