RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA | RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC | RCC_AHB1Periph_GPIOD | RCC_AHB1Periph_GPIOE, ENABLE); //使能相应GPIO的时钟
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;//10M时钟速度
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;//选择输入模式
//按键
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;//S1
GPIO_InitStructure.GPIO_Pin |= GPIO_Pin_0;//S2
GPIO_Init(GPIOA, &GPIO_InitStructure);//写入设置参数
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;//S3
GPIO_InitStructure.GPIO_Pin |= GPIO_Pin_2;//S4
GPIO_Init(GPIOC, &GPIO_InitStructure);//写入设置参数
//红外管信号
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;//PT1
GPIO_InitStructure.GPIO_Pin |= GPIO_Pin_0;//PT2
GPIO_Init(GPIOC, &GPIO_InitStructure);//写入设置参数
PWR_BackupAccessCmd(ENABLE);//允许修改RTC 和后备寄存器
RCC_LSEConfig(RCC_LSE_OFF);//关闭外部低速外部时钟信号功能 后,PC13 PC14 PC15 才可以当普通IO用。
BKP_TamperPinCmd(DISABLE);//关闭入侵检测功能,也就是 PC13,也可以当普通IO 使用
BKP_ITConfig(DISABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;//选择输入模式
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_15;//PT3
GPIO_InitStructure.GPIO_Pin |= GPIO_Pin_14;//PT4
GPIO_InitStructure.GPIO_Pin |= GPIO_Pin_13;//PT5
GPIO_Init(GPIOC, &GPIO_InitStructure);//写入设置参数
|