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/MSP-TS430DA38: MSP430F2252

Part Number: MSP-TS430DA38
Other Parts Discussed in Thread: MSP430F2252, MSP430WARE

Tool/software: Code Composer Studio

hellow sir,

i am working msp430f2252 using ccsv7. here i getting problem in ccs.

for

Description Resource Path Location Type

gmake: *** [main.obj] Error 1 apl C/C++ Problem

gmake: Target 'all' not remade because of errors. projectName C/C++ Problem.

i write piece of code and joining every piece of code it will generate this error ..

my work is pending for this error.

so pls solve or give solution immediately.

Thanking You

siranjeevi.m 

  • Please save the full output seen in the CCS build console to a text file and attach it here. That should provide more details about the errors you are seeing.

  • I used uart sample code and i2c sample code both should work individually..but combined its not work..generate error..

    like this type

    "Type gmake: Target 'all' not remade because of errors.

    how to solve ?and can you give any sample code of this?



    thanking you

    siranjeevi
  • siranjeevi mahadevan said:
    "Type gmake: Target 'all' not remade because of errors.

    There are usually prior errors preceding this final error message. Please take a look at the CCS build console and carefully look for error messages - they will also be summarized in the CCS Problems view. 

    If you need further help in understanding the errors, we would need to see the full build output (not just this final message). 

    The sample codes provided by TI are all included in MSP430Ware.

  • hi,

    i have found my problem in this line   

     #pragma vector=USCIAB0TX_VECTOR

    if i delete this line no error 

    otherwise to generate Type gmake:Target all not remade because of error.

    can you explain about #pragma and remain vector  usage detail of this 

    thanking you

    siranjeevi

  • From a compiler perspective, you can find details about this pragma, its usage and syntax in the MSP430 Compiler Users Guide, section 5.12.30. 

    To better understand how it is used I would suggest taking a look at some of the examples provided in MSP430Ware. You can import some of those example projects into CCS and compare them with your project to identify and address any differences.