..\Inc\led.h(6): warning: #1295-D: Deprecated declaration KEY_Init - give arg types 以 KEY_Init()举例;这个函数在声明时未在小括号中加入 void 空白名, 只要加上一个void,即 KEY_Init(void)就可以消除此警告。
keil编译警告 简介 用keil写程序时发现以下警告:hardware.h(6): warning: #1295-D: Deprecated declaration LED_init - give arg types 工具/原料 keil5 方法/步骤 1 解决方法:在函数声明中加入(void),例如LED_init(); 改为LED_init(void);2 警告位置如图 3 修改后,如图 4 编译后查看,无错误,无...
GPIO_Init(LED_GPIO_Port ,&GPIO_Init_Struct); } 声明函数时为 void LED_GPIO_Init(); 编译之后就会出现 warning: #1295-D: Deprecated declaration LED_GPIO_Init - give arg types 如果声明函数为 void LED_GPIO_Init(void); 那么编译器则不会报警告。©...
1.warning: #1295-D: Deprecated declaration run_c - give arg types voidrun_c();//原函数voidrun_c(void);//改正后 对比前面声明的函数,发现是括号少了一个void,因为我的函数是不带参的,不加void会有警告的,往括号里加了void之后,重新编译之后警告消失。 2.warning: #940-D: missing return statement...
1.warning: #1295-D: Deprecated declaration run_c - give arg types void run_c();//原函数 void run_c(void);//改正后 对⽐前⾯声明的函数,发现是括号少了⼀个void,因为我的函数是不带参的,不加void会有警告的,往括号⾥加了void之后,重新编译之后警告消失。2.warning: #940-D: missing...
GPIO_Init(LED_GPIO_Port ,&GPIO_Init_Struct); } 声明函数时为 void LED_GPIO_Init(); 编译之后就会出现 warning: #1295-D: Deprecated declaration LED_GPIO_Init - give arg types 如果声明函数为 void LED_GPIO_Init(void); 那么编译器则不会报警告。
warning: #1295-D: Deprecated declaration FFT_fun - give arg types 说明:传递混乱; 解决:在FFT_fun();的括号里面加上void;FFT_fun(void); 2. .\OBJ\ADC.axf: Error: L6200E: Symbol IR_X multiply defined (by stm32f4xx_it.o and main.o). 说明:重复定义了 解决:改名字 3. .\OBJ\ADC.axf...
7..warning: #1295-D: Deprecated declaration lcd_init - give arg types 描述:在定义函数的时候,如果你写上函数参数,就会有这个警告,比如void timer_init(); 这里就没有形参,如果这样的话,编译器会给出警告. 1. error: #65: expected a ";" ...
7..warning: #1295-D: Deprecated declaration lcd_init - give arg types 描述:在定义函数的时候,如果你写上函数参数,就会有这个警告,比如void timer_init(); 这里就没有形参,如果这样的话,编译器会给出警告. 1. error: #65: expected a ";" ...
.warning: #1295-D: 7..warning: #1295-D: Deprecated declaration lcd_init - give arg types 描述:在定义函数的时候,如果你写上函数参数,就会有这个警告,比如void timer_init();这里就没有形参,如果这样的话,编译器会给出警告. error: #65: 1. error: #65: expected a ";" 描述:缺少分号.大多是漏...