Hello,
I am having some warnings since I have migrated from CCSv5 to CCSv5.3.
The message says:
#303-D typedef name has already been declared (with same type)
This message is being showed at the beginning of the code, the same message for six consecutive lines of code. The problem is that the message is being showed for every single .c file in my project.
I have investigated a little bit and it seems that the message is not really applicable to all those files, but just to a specific heather file that is included in the project. The message is really talking about a portion of the code that goes:
typedef int int16;
typedef long int32;
typedef unsigned int Uint16;
typedef unsigned long Uint32;
typedef float float32;
typedef long double float64;
Do you have any idea on how to solve this?
Thanks,
Lucas