Hello, I am trying to have my MSP430G2553 on a launchpad (Rev.1.5) show anything on the serial monitor using the following code:
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println("Test");
delay(1000);
}
I have downloaded the drivers http://energia.nu/Guide_Windows.html
I have switched the jumpers http://energia.nu/img/LaunchPadMSP430G2553-V1.5.jpg
I'm just not sure what is wrong. I can load the Blink example and get it to work and even making it do other things but when it comes to reading values and serial the launchpad doesn't want to do anything.