Is it possible to create single CCS project with different build options for different microcontroller? What all things should I be careful about in order to realize this.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Is it possible to create single CCS project with different build options for different microcontroller? What all things should I be careful about in order to realize this.
Hello,
Is it possible to create single CCS project with different build options
This is possible. You can have multple sets of build options in the same project using build configurations. But...
for different microcontroller?
You cannot specify different device variants for each build configurations. The device variant is set at the project level.
Note that the device variant is mostly used to specify default build settings and files for the project. Once the project is created, you can then manually change the build options (and files) as needed for each configuration as you wish.
Thanks
ki