GPIO中断的使用 GPIO 中断的使用
GPIO 中断的使用GPIO 中断的使用步骤初始化 GPIO引脚作为输入引脚 GPIO_Init()GPIO_InitTypeDef GPIO_InitStructure;GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD; //PF1设置成输入,默认下拉 ...