Other Parts Discussed in Thread: TMS320VC5502
Dear all,
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.
Other Parts Discussed in Thread: TMS320VC5502
Dear all,
I use BIT field in software lik below.
-----------------------------------------------------------------
typedef struct
{
unsigned int x:2;
unsigned int y:3;
unsigned int z:1;
}TEST;
#pragma DATA_SECTION(temp, "MEMORY");
TEST temp[25];
--------------------------------------------------------------------
In that MEMORY is in external SRAM.
When i compile in CCS 3.1 it gives warning as below
"Nonstandard type for a bit field"
Whats the impact of this warning?
Can i ignore this warning? or How can i remove this warning?
It affects performance?
If it is in Internal then also it creates any problem?
It creates warning,But when i Compile it for TMS320VC5502 and run on board,then it works fine.
Rahul the warnings that do not effect your code while debugging or running can be ignored.
Rahul - Gautam is correct.
For more details on what the warning may be referring to, and how to suppress the warning, see:
http://e2e.ti.com/support/development_tools/compiler/f/343/t/201192.aspx
Thanks
ki