As the title says its not giving me any errors when i build and run in code composer, but nothing happens on the baord. It even says the normal : "MSP430: Flash/FRAM usage is 84 bytes. RAM usage is 80 bytes." The code is below, should just light up leds in pattern. Straight from textbook, tried other code also.
#include <msp430.h>
void main (void)
{
WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer
P2DIR = 0x18; // Set pins with LEDs to output, 0b00011000
P2OUT = 0x08; // LED2 (P2.4) on, LED1 (P2.3) off (active low!)
for (;;) { }
}
`