Other Parts Discussed in Thread: SYSCONFIG
I am trying to use several sysconfig files in the same project as per the following : https://software-dl.ti.com/ccs/esd/documents/application_notes/appnote-sysconfig_multiple_configuration_files.html
However this seems not to work.
If you have and compile two different build configuration named Development and Production for exemple.
Then two folder will appear <project>/Development and <project>/Production each containing the auto generated file /syscfg/ti_drivers_config.h
Since each of these files contain the same header protection (see below) and because TiCCS considers that <project>/Development and <project>/Production are part of the build, one header file will disable the second. Apparently there is now way to choose which one.
#ifndef ti_drivers_config_h #define ti_drivers_config_h
This can lead to unpredictable behaviour.
So the question is : how is it possible to exclude from build the build directories that belong to the others build configurations than the one selected ?
Regards.