Hi team,
Customer is using AWR1843 device, and the compilier is C:\ti\ccs1120\ccs\tools\compiler\ti-cgt-arm_20.2.5.LTS
Question: How to config CCS to support “Function declaration” not same as the "definition" ? This is supported in C, but CCS will report an error. The reason to do this, is they are copy code from other platform to Ti platform, and this code is already qualified in other non-TI platform.
Error: Description Resource Path Location Type, #148 declaration is incompatible with "void functionname(const uint8_t *, uint16_t)" (declared at line 3700)
typedef uint8_t data_u8[1];
void functionname( uint8_t *aaaa);
void functionname( data_u8 *aaaa)
{
}
Thanks.
Wesley