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.

CodeSense trouble: Doesn't work with class template

Other Parts Discussed in Thread: CODECOMPOSER

Hi,
I'm having some problems with CodeSense lately. The first problem I solved by following the tips wrote on topics "Strange proble in CCS" and "CCs3.3 Problems with the code sensing function". It was working well, but I had another one. Here we go:
I was writing a C++ code in Code Composer Studio ( Version: 3.3.46.1; Integrated Development: 5.98.0.256 Texas Instruments; BIOS 5.31.02; Code Generation Tool: v4.1.3; Board Revision: (00.00.86); Target Silicon Revision: (00.00.02) ) and it was working well. I always write one ".h" file and one ".cpp" file (if it's needed) for each class in the project. Until here, I was using simple classes and the CodeSense was working well. The last class I wrote is a template class. At this point my problem came back: CodeSense is not working anymore with my template class. An example code is shown below:
File "C_Sinal.h"
--------------------------------------------------------------------------------
#include "DSP280x_Device.h"     // DSP280x Headerfile Include File
template <Uint16 u16Tamanho>
class C_Sinal
{
Uint16 u16Sinal[u16Tamanho];
};
--------------------------------------------------------------------------------
File "Main_File.cpp"
--------------------------------------------------------------------------------
#include "C_Sinal.h"
int main(void)
{
// ... some code
C_Sinal<1> oTesteSinal;
for(;;)
{
// ... some code
oTesteSinal. u16Sinal[0] = 0; // CodeSense doesn't work here.
// ... some code
}
}
--------------------------------------------------------------------------------
If I comment the line
...
// template <Uint16 u16Tamanho>
...
is enough to CodeSense work normally again, even if I don't save the ".h" file.
I tried to update CodeComposer Studio ( Version: 3.3.82.13; Integrated Development: 5.98.0.393 Texas Instruments; BIOS 5.31.02; Code Generation Tool: v4.1.3; Board Revision: (00.00.00); Target Silicon Revision: (00.00.00) ), but I still have the same problem.
Can someone help? Thanks in advance.
Best Regards,
Hatus Vianna