我配置成这样,但还是不行,麻烦大家帮我看看应该如何配置啊?
GPIO_PinAFConfig(GPIOA,GPIO_PinSource13, GPIO_AF_SWJ);
GPIO_PinAFConfig(GPIOA,GPIO_PinSource14, GPIO_AF_SWJ);
GPIO_InitStructure.GPIO_Pin = SWDIO;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_40MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// PA.14用作SWD调试
GPIO_InitStructure.GPIO_Pin = SWCLK;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_40MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_OD;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_DOWN;
GPIO_Init(GPIOA, &GPIO_InitStructure); |