I am trying to rebuild CSL v 2.10 for C5505 in CCS v 5.2.The version of C5500 compiler is 4.4.1
The build generally succeeded but I am getting the following warnings:
'C5500 Compiler: C:/CCS5.2/c55xx_csl/src/csl_audioClass.c'
"C:/CCS5.2/c55xx_csl/build/cslVC5505/../../inc/csl_audioClassAux.h", line 314: warning #225-D: function declared implicitly
"C:/CCS5.2/c55xx_csl/src/csl_audioClass.c", line 963: warning #225-D: function declared implicitly
'C5500 Compiler: C:/CCS5.2/c55xx_csl/src/csl_msc.c'
"C:/CCS5.2/c55xx_csl/build/cslVC5505/../../inc/csl_mscAux.h", line 1021: warning #225-D: function declared implicitly
"C:/CCS5.2/c55xx_csl/src/csl_msc.c", line 2332: warning #225-D: function declared implicitly
Here are the code lines, compiler complaints about:
csl_audioClassAux.h", line 314:
USB_setConfiguration(devNum,usbSetup->wValue);
csl_audioClass.c", line 963:
strLen = strlen(pCtrlHandle->strDescr[usbSetup->wValue & CSL_AC_8BIT_MASK]);
csl_mscAux.h", line 1021
USB_setConfiguration(devNum,usbSetup->wValue);
csl_msc.c", line 2332:
strLen = strlen(pCtrlHandle->strDescr[usbSetup->wValue & CSL_MSC_8BIT_MASK]);
Can anyone advise why I am getting these warning and how to fix them?
Thanks