雅特力AT32 调试接口SWD怎么关闭,我要用PA13脚,试了几次都不行。
void GPIO_Configuration(void)
{
//PA6,PA7,
GPIO_InitType GPIO_InitStructure;
GPIO_PinAFConfig(GPIOA, GPIO_PinsSource6, GPIO_AF_5);
GPIO_PinAFConfig(GPIOA, GPIO_PinsSource7, GPIO_AF_5);
GPIO_PinAFConfig(GPIOA, GPIO_PinsSource13,GPIO_AF_0);
/* GPIOA Configuration:TMR16 Channel1,TMR17 Channel1 */
GPIO_InitStructure.GPIO_Pins = GPIO_Pins_6|GPIO_Pins_7|GPIO_Pins_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_MaxSpeed = GPIO_MaxSpeed_50MHz;
GPIO_InitStructure.GPIO_OutType = GPIO_OutType_PP;
GPIO_InitStructure.GPIO_Pull = GPIO_Pull_NOPULL;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// IR_OUT PB9,PA13
//GPIO_PinAFConfig(GPIOA, GPIO_PinsSource13,GPIO_AF_0);
/* GPIOB Configuration:IRTMR Output */
// GPIO_InitStructure.GPIO_Pins = GPIO_Pins_13;
// GPIO_Init(GPIOA, &GPIO_InitStructure);
}
|