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.

MSP430: Error connecting to the target: The target setup (MSP430F2112) does not match the actual target type (MSP430F21x1)

Other Parts Discussed in Thread: MSP430F2112, MSP430F2111

I have a reel of MSP430F2112 I bought from Digikey.  They are QFN32 parts.  CCS V4 is not recognizing the part correctly and thinks it is a 21x1 part.

I have version 4.0.2.01003 of Code Composer Studio (I just upgraded using help->Software Updates since the original installation had the same problem).

I went through the CCS wizard to create an MSP430F2112 project and added __MSP430F2112__ to the pre-defined names, and it gives the error.  If I create a separate project for the MSP430F2111 and add __MSP430F2111__ to the predefined names, it allows the code to be uploaded. 

I am using the EZ430U Rev 2.0 to program the chip.  Is that the problem?  Do I need to buy another programmer?

The only code I have loaded so far is a simple main just to watch the debugger work:

#define VAR_DECLS
#include <msp430.h>


void main(void)
{
   
    while(1)
    {
        // do nothing
    }
}

Thanks,

Greg