STM32-SWD仿真时PB3,PB4,PA15使用问题

上代码:

void generalIO_Init(void)  //通用IO口初始化
{
    //GPIO端口设置
    GPIO_InitTypeDef GPIO_InitStructure;
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_AFIO, ENABLE); //蜂鸣器口
    
    GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable,ENABLE);//从JTAG口释放PB3,PB4,PA15,但Released only if not using asynchronous trace.

    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;//蜂鸣器口
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
    GPIO_Init(GPIOB, &GPIO_InitStructure);
    GPIO_SetBits(GPIOB, GPIO_Pin_1);  //蜂鸣器关
    
    
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3|GPIO_Pin_4;  //门控和水位输入
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
    GPIO_Init(GPIOB, &GPIO_InitStructure);
}

代码中一定要添加:
//GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable,ENABLE);

这句用来释放JTAG的IO口。但SWD仿真还是有个问题,当使用SWD仿真时,被释放出来的这几个IO口是不能使用的,不管是做输入还是输出,都是不能使用的。这个绝对是个坑。注意 注意

你可能感兴趣的:(理论,单片机,代码,问题记录)