void Cba_Init1()
{
GPIO_InitTypeDef GPIO_TypeDefStructure;
RCC_AHB1PeriphclockCmd(RCC_AHB1Periph_GPIOC,ENABLE);
GPIO_TypeDefStructure.GPIO_Pin = GPIO_Pin_15;
GPIO_TypeDefStructure.GPIO_Mode = GPIO_Mode_OUT; //通用输出
GPIO_TypeDefStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOB,&GPIO_TypeDefStructure);
GPIO_SetBits(GPIOB,GPIO_Pin_15);
GPIO_TypeDefStructure.GPIO_Pin = GPIO_Pin_10|GPIO_Pin_11;
GPIO_TypeDefStructure.GPIO_Mode = GPIO_Mode_OUT; //通用输出
GPIO_TypeDefStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOH,&GPIO_TypeDefStructure);
GPIO_SetBits(GPIOH,GPIO_Pin_10|GPIO_Pin_11);
GPIO_TypeDefStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_TypeDefStructure.GPIO_Mode = GPIO_Mode_OUT; //输入
GPIO_TypeDefStructure.GPIO_PuPd = GPIO_PuPd_UP; //上拉
GPIO_Init(GPIOC,&GPIO_TypeDefStructure);
GPIO_SetBits(GPIOC,GPIO_Pin_13);
}
|