Tool/software: Code Composer Studio
Hi all,
I'm trying to build the code but it is showing an error like this
error: symbol "value" has already been defined. Please help me to to solve this problem
Thanks in advance
Regards,
Roopa Kalmath
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
Hi all,
I'm trying to build the code but it is showing an error like this
error: symbol "value" has already been defined. Please help me to to solve this problem
Thanks in advance
Regards,
Roopa Kalmath
Roopa,
You have not provided details about the project, but I will assume that this is your own custom project or a modified version of one of the TI example projects.
In general, the error means that you have multiple definitions of the symbol "value". Are you compiling with optimization, if so what level? To fix the error, check if you have multiple files that are defining the symbol and change it so there is only one single definition. The related thread here has some background about this error.
Hope this helps.