Hi all,
I have a CCS 4 project, and it basically grew out of a single cpp file that I had to partition things into several .cpp files, as well as .h files. The issue I see is that whenever I define a function inside the .h file, CCS is happy and doesn't give me errors.
But whenever I define the function in a (new) separate .cpp file, I get an unresolved symbol error for that function.
What am I doing wrong and how do I fix it?
How can I make sure my "new" .cpp file is being compiled at all? Looks like CCS is not seeing the implementation in that new file, so it chokes.
Any pointers?
--Dave