AddThis Social Bookmark Button

03 Writing software for dsPIC (R) DSC using Erika Enterprise

This section describes the details about the various configuration options which are available to create and compile an Erika Enterprise application for a dsPIC (R) DSC microcontroller.
Avoid the generation of dependency files
The typical compilation process of an Erika Enterprise application involves the computation of a dependency file which is used to understand which are the files which needs to be compiled or updated.
To avoid the computation of these dependencies (useful when you are sure you basically have to compile everything), you can put the following line in the OIL file:
CPU mySystem {
OS myOs {
EE_OPT = " NODEPS ";
...
};
...
};