main.c(4): error: #147-D: declaration is incompatible with "void GPIO_Init(GPIO_TypeDef *, GPIO_InitTypeDef *)" (declared at line 351 of "..\STM32F10x_FWLib\inc\stm32f10x_gpio.h") void GPIO_Init(void); main.c(10): error: #268: declaration may not appear after executable statement in block uint8_t i = 0; main.c(10): error: #67: expected a "}" uint8_t i = 0; main.c(11): error: #147: declaration is incompatible with "void USART1_Init(void)" (declared at line 3) USART1_Init(); main.c(12): error: #169: expected a declaration while(1) { //???????请给出具体措施以解决这些问题
时间: 2024-04-01 16:35:16 浏览: 393
keil常见错误.pdf
这些错误信息来自编译器,主要分为三类:
1. declaration is incompatible:在 main.c 文件中,函数的声明与在 stm32f10x_gpio.h 和其他头文件中定义的函数声明不兼容。需要检查函数的参数类型、返回值类型等是否与定义一致。
2. declaration may not appear after executable statement in block:在 main.c 文件中,变量声明放在了可执行语句之后。需要将变量声明放在可执行语句之前。
3. expected a declaration:在 main.c 文件中,缺少声明语句。需要增加相应的声明语句。
针对具体的错误信息,可以采取以下措施:
1. 在 main.c 文件中,将 GPIO_Init 函数的声明修改为与 stm32f10x_gpio.h 文件中定义的函数声明一致。
2. 将变量 i 的声明放在可执行语句之前。
3. 在 main.c 文件中,增加 USART1_Init 函数的声明语句。
阅读全文