移植了GUI,现在遇到这样一个问题 ,,,我在h文件中声明一个函数,在c中定义,在main'中引用,,关键我在c中没有加入h的头文件,为什么不抱错??。。。按道理坑定是错的啊??
在app.h文件中
#ifndef _APP_H_
#define _APP_H_
void MainTask(void);
#endif
在app.c文件中
void MainTask()
{
}
在main中
#include "stm32f10x.h"
#include <stdlib.h>
#include &quot;bsp_ili9341_lcd.h&quot;
#include &quot;APP.h&quot;
int main(void)
{
bsp_InitLCD();
MainTask(); |