博士
最后登录1970-1-1
在线时间 小时
注册时间2015-10-25
|
- void DIANJI_GPIO_Config(void)
- {
- GPIO_InitTypeDef GPIO_InitStructure;
-
- RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOE, ENABLE);
-
-
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_14;
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
-
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
- GPIO_Init(GPIOF, &GPIO_InitStructure);
-
-
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12;
- GPIO_Init(GPIOE, &GPIO_InitStructure);
-
-
- GPIO_SetBits(GPIOE, GPIO_Pin_12|GPIO_Pin_14);
- }
复制代码 用的v2开发板,用万用表测没有输出,两只引脚都没有,用led流水灯的例程测那个跳帽下的引脚测也只有1.85v
上面是初始化程序,主函数里面就是置位那个函数
led会亮,但是我用的e12e14引脚没有输出
|
|