初中生
最后登录1970-1-1
在线时间 小时
注册时间2015-9-29
|
- void LED_GPIO_Configure()
- { GPIO_InitTypeDef GPIO_InitStructure;
- GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;//ÅäÖÃ3é¿a©êä3ö
- GPIO_InitStructure.GPIO_Pin=GPIO_Pin_0;
- GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
- GPIO_Init(GPIOB,&GPIO_InitStructure);
- GPIO_InitStructure.GPIO_Pin=GPIO_Pin_7|GPIO_Pin_8;
- GPIO_Init(GPIOF,&GPIO_InitStructure);
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOF,ENABLE);
- }
复制代码
|
|