IAR开发环境中添加头文件
16 November 2009
今天在添加uart 驱动时,需要向现有的 uC/OS 工程文件中添加头文件。
1. 直接在工程目录下新建一个目录,将uart.c 和 uart.h 添加到该目录下,
2. 在工程项目上右键->add->add group ,添加一个组 uC-UART
3. 在该组上继续右键->add->add file ,添加 uart.c 和 uart.h
4. 修改includes.h ,添加 #include <uart.h>
5. 此时直接编译会报错说无法找到<uart.h> ,还需要将上述目录添加到编译路径中,右键工程 ->option->C/C++ Compiler->preprocessor ,将 uart.h 所在路径添加到 include 路径中
6. 重新编译,就没有错误了。
blog comments powered by Disqus