Espanol
AddThis Social Bookmark Button

3.3 Source files composing an application

The source files which can be put in an RT-Druid project are composed by C-language files (with extension .c) and Assembler files (with extension .S). Assembler files are always preprocessed by the C preprocessor. All the application files which has to be included in the final application needs to be listed inside the OIL file, as in the following OIL example:
...
CPU_DATA = PIC30 {
...
APP_SRC = " file_1 .c";
APP_SRC = " file_2 .c";
};
...