Tool/software: Code Composer Studio
What is the meaning and the influence of the "isTargetManual" tag under the <projectOptions> tag in a .ccsproject file?
(Could not find it in the wiki)
Thanks
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.
Tool/software: Code Composer Studio
What is the meaning and the influence of the "isTargetManual" tag under the <projectOptions> tag in a .ccsproject file?
(Could not find it in the wiki)
Thanks
Actually the behavior is the same.
Robson Tovo said:When checked, it lets me choose the connection manually
Yes, this is intended behavior
Robson Tovo said:When unchecked, it doesn't let me choose:
This is also intended behavior
Basically, enabling that option is telling CCS that you want the CCS project manager to maintain the target configuration file. For the project manager to do so, it needs to know the connection type. Hence why you can choose the connection type.
If you uncheck the option, you are telling CCS that you will maintain the target configuration file yourself manually. Hence the connection type is not needed by the project manager since you will maintain the target configuration yourself. Hence the option to choose in the project is disabled.
Thanks
ki