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/CC3200: Compilation failure: error #20: identifier "gpCtlTbl" is undefined, - gmake: *** [udma_if.obj] Error 1

Part Number: CC3200

Tool/software: Code Composer Studio

I am making the new project. I have attached the all files. I have added all the libraries in the properties. Can I know why I am getting the compilation failure? 

You can find the picture of project attached below.

  • Hi Mohit,

    I can't see the entire error but it looks like you have:

    1. An http_client source file referenced that cannot be found/opened
    2. A variable, "gpCtlTbl", that is not defined within one of your files.

    For (1) it's probably an include/linker issue. Check your main.c #includes as it looks like that's where the problem resides.

    For (2) have you checked the udma_if.c file to make sure the gpCtlTbl variable is in fact defined?

    Best,
    Kevin