PD1重映射成GPIO功能,設(shè)置上拉輸入,默認(rèn)電平是低電平
? ? GPIO_InitTypeDef? GPIO_InitStructure;
? ? RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD , ENABLE);? //GPIOD外設(shè)時(shí)鐘
? ? RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);
? ? GPIO_PinRemapConfig(GPIO_Remap_PD01,ENABLE);
? ? GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
? ? GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
? ? GPIO_Init(GPIOD, &GPIO_InitStructure);