下面是代码的一部分: void GPIO_Configuration(void) { //RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB | RCC_APB2Periph_AFIO, ENABLE); GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable, ENABLE); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All ; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //Òý½ÅƵÂÊ50M GPIO_Init(GPIOB, &GPIO_InitStructure); 我的问题是: GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable, ENABLE); 这个函数有什么作用?????? |
评分
查看全部评分
谢谢