#include <msp430.h>
void main(void)
{
while(1)
{
// do nothing
}
}
I went through the CCS wizard to create an MSP430F2112 project and added __MSP430F2112__ to the pre-defined names, and it gives the error for both chips. If I create a separate project for the MSP430F2111 and add __MSP430F2111__ to the predefined names, it allows the code to be uploaded to both chpis and I can watch the program spin... but only two GPIO ports are available in the register list. I can read all the registers common to the devices (such as the clock calibration values and the values are sane) and watch it step through the loop, so I have high confidence that the Spy-Bi-Wire is hooked up correctly.