I should test a first the programs which are available at Ti
I wonder why my programs which function under other derivates are not similar to them of 2274.
I looked for a simple loop where I can test my Eval board.
I found it in a demo program which I changed a little:
//******************************************************************************
// MSP430F22x4 Demo - Poll P1 With Software with Internal Pull-up
//
// Description: Poll P1.3 in a loop, if hi P1.0 is set, if low, P1.0 reset.
// Internal pullup enabled on P1.3.
// ACLK = n/a, MCLK = SMCLK = default DCO
//
// MSP430F22x4
// -----------------
// /|| XIN|-
// | | |
// --|RST XOUT|-
// /|\ | R |
// --o–| P1.2-o P1.0|–>LED
// |/
//
// A. Dannenberg
// Texas Instruments Inc.
// April 2006
// Built with CCE Version: 3.2.0 and IAR Embedded Workbench Version: 3.41A
//******************************************************************************
#include “msp430x22x4.h”
void main(void)
{
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
P1DIR = 0x01; // P1.0 output, else input
P1OUT = 0x04; // P1.2 pullup
P1REN |= 0x04; // P1.2 pullup
while (1) // Test P1.2
{
if (0x04 & P1IN)
P1OUT |= 0x01; // if P1.3 set, set P1.0
else
P1OUT &= ~0x01; // else reset
}
}
My mistake was that I forgot the Pull up resistor.