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.

CCS/TMS320C6678: The same program can be compiled in VS, but not compiled in CCS ?

Part Number: TMS320C6678
Other Parts Discussed in Thread: AWR1243, SYSBIOS

Tool/software: Code Composer Studio

Hi everyone,

I need to use tms320c6678-evm as an external host to configure AWR1243 . According to the instructions in the html , I am trying to write interface functions . I have encountered the following warning :

Description Resource Path Location Type
#515-D a value of type "ti_sysbios_knl_Semaphore_Handle *" cannot be assigned to an entity of type "osiLockObj_t *" host_driver.c /AWR1243_V5/1243/user_define line 153 C/C++ Problem

The warning code is as follows:

osiLockObj_t*      pLockObj;

Semaphore_Handle    timerSemaphore;

pLockObj    =      &timerSemaphore ;

In order to resolve this warning, I tried to repeat it in visual studio. So I wrote the following code:

#include <stdio.h>
#include <string.h>

struct      ti_sysbios_knl_Semaphore_Object {
        int i;
        char dummy;
};

typedef              struct  ti_sysbios_knl_Semaphore_Object      ti_sysbios_knl_Semaphore_Object;
typedef              ti_sysbios_knl_Semaphore_Object*               ti_sysbios_knl_Semaphore_Handle;
#define              Semaphore_Handle                                        ti_sysbios_knl_Semaphore_Handle

typedef              void* HANDLE;
typedef              HANDLE             osiLockObj_t;


int main(void) {
Semaphore_Handle         timerSemaphore;
osiLockObj_t *                  pLockObj;

pLockObj  =   &timerSemaphore;

return 0;
}

The same program can be compiled in VS, but not compiled in CCS. Where is the problem?

Best wishes!

Tf