学前班
最后登录1970-1-1
在线时间 小时
注册时间2015-5-10
|
楼主 |
发表于 2015-5-12 12:21:37
|
显示全部楼层
本帖最后由 0fff0 于 2015-5-12 14:31 编辑
void LED_GPIO_Config(void);
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init(GPIOC,&GPIO_InitStructure);
GPIO_SetBits(GPIOC,GPIO_Pin_3 | GPIO_Pin_4 | GPIO_Pin_5);
}在led.c文件中出现..\..\User\led\led.c(25): error: #169: expected a declaration是哪里出现了问题
|
|