• include file
    hello everyone, i am writing a program for c8051f020,in which i have 4 ".c" files: main c file,keyroutine file, general routines files,confguration file i separated bit addressable, data addressable...
  • Library files, include source files
    Hi, I built a library file that can be used for other projects. Once I have built it and added it to another project, I right click on a function and select "Go to the definition of 'function...
  • #include file in a subdirectory
    Hi, I'm using the C166 compiler. I'm trying to restructure a project, and wanted to put serveral related files in a subdirectory, say "thing". We have several source and header files that look like...
  • ways to include header files
    I created a project with uVision3 and added all the necessary header files into the file group 'Header' by using Project - Components, Environment, Books . By compiling this project I got many similar...
  • Include various C files
    I would like to do conditional compiling and include different C files based on the hardware being used. For example: #ifdef HARDWARE_MODULE_1 #include "hardware_module_1.c" #endif #ifdef...