在stm32f407编程中遇到了error: #268: declaration may not appear after executable statement in block,编写代码如下:
#include "bsp_led.h"
void GPIO_Config(void)
{
/*以下四个步骤适用于所有的外设成员*/
/*第一步:开GPIO外设时钟*/
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);
/*第二步:定义一个GPIO初始化结构体*/
GPIO_InitTypeDef GPIO_InitStruct;
/*第三步:配置GPIO初始化结构体成员*/
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_6;//引脚:GPIOF_6
GPIO_InitStruct.GPIO_Mode= GPIO_Mode_OUT;//输出模式
GPIO_InitStruct.GPIO_OType=GPIO_OType_PP;//推挽输出
GPIO_InitStruct.GPIO_Speed=GPIO_Low_Speed;//输出速度:LOW
GPIO_InitStruct.GPIO_PuPd=GPIO_PuPd_UP;//上拉,高电压
/*第四步:调用GPIO初始化函数,把配置好的GPIO初始化成员写入寄存器*/
GPIO_Init(GPIOF, &GPIO_InitStruct);
}
报错情况:
问题分析:文章来源:https://www.toymoban.com/news/detail-540097.html
- 在c89(1989年)标准中规定了c文件中局部变量的定义只能放在所有执行语句前,放在开头处;c99(1999年)标准中c文件中局部变量的定义可以放在任何地方。
- 代码中 ==GPIO_InitTypeDef GPIO_InitStruct;==只能放在开头或者改为c99标准.
解决方法:
文章来源地址https://www.toymoban.com/news/detail-540097.html
到了这里,关于error: #268: declaration may not appear after executable statement in block问题解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!