Hi,
I get no debug info. Variable window is empty. I cannot add anything in Expressions window.
How do I make this work.
Test program shown!
Thanks
~~~~~
board: LaunchPad
chip: MSP430G2231
port: MSP430 Application UART
CCS: 5.2.1.00018
test program:
#include <msp430g2231.h>
unsigned char x = 0x01;
void main(void) {
unsigned char y = 0x02;
WDTCTL = WDTPW + WDTHOLD;
P1DIR = P1DIR | 0xf1;
P1OUT = P1OUT & 0x01;
}