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/UCD3138A64: CCS/UCD3138A64

Part Number: UCD3138A64

Tool/software: Code Composer Studio

Good morning, 

I have an UCD3138A64CEVM-660  card , I downloaded a firmware named "UCD3138HSFBEVM_029"  .

When I do the building  with [Active-UCD3138]  I have no errors .

but when I change to my device i obtain these errors 

thanks for help  

  • Hello,

    Zi123D CH123KHA said:
    When I do the building  with [Active-UCD3138]  I have no errors .

    Actually it looks like the custom pre-build steps failed since the commands were not recognized.

    Zi123D CH123KHA said:
    but when I change to my device i obtain these errors 

    These are common build errors. The first error is saying that the compiler cound not find where PMBusRegs is defined. Are you including the required header file that defines it? Where is it defined? I am not familiar with this example so I don't know. But make sure you have all the header files you need and the correct search paths to them

    As for the next error:

    https://stackoverflow.com/questions/43963889/variable-was-declare-with-a-never-completed-type

    The last error is pretty self-explanatory. You are missing a #endif in the code. When the compiler says that the #endif is missing, you normally have more #if/#ifdef than you have #endif. Pair each open/close token and see if you can find a mismatch.

    Thanks

    ki