The user can have several configurations of the project in one project file. The configuration system is very simple. Every configuration keeps the enable/disable state of all beans in the project (it does NOT keep bean settings!). If you enable/disable a bean in the project, the bean state is updated in the currently selected configuration. If you create a new configuration the current project state is memorized. Configurations of the current project are listed in the Project Panel configurations folder. They can be managed using a pop-up menu of the specific configuration or the whole Configurations folder. Configuration properties and a user comment can be changed in the configuration inspector. See chapter Configuration Inspector for details. The symbol for conditional compilation is defined if it is supported by
selected language/compiler. The symbol PEcfg_[ConfigurationName]
is defined in the CPU interface. Configuration also stores which CPU is selected as the
target CPU. ExampleLet's have a configuration named 'Testing case'. We would like to use a bean and part of our code using the bean only in the 'Testing case' configuration. We make the Testing case configuration active. After the successful code generation the CPU.H file contains the following definition:
/* Active configuration define symbol */ #define PEcfg_Testingcase 1
We will surround the part of the code used only in this configuration the following way:
... #ifdef PEcfg_TestingCase Bean_MethodCall(...); #endif ...
|