This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

MSP430FR6989: Serial port monitor is not working

Part Number: MSP430FR6989
Other Parts Discussed in Thread: ENERGIA,

Dear all,

I have the following code , I want to display the value of the variable y22 but nothing shows up in the serial monitor (com16), I tried to dispaly it in LCD but nothing shows up as well, I'm using Energia 1.6, the folder under C and I reorient the jumpers TXD and RXD.

Could you please verify that for me.

Thank you.

#include <LCD_Launchpad.h>

#include <driverlib.h>

#include <SPI.h>

#include <LiquidCrystal.h>
#include <driverlib.h> // Required for the LCD

//#include <LiquidCrystal_I2C.h>
//LiquidCrystal lcd;

void setup() {
// put your setup code here, to run once:
//analogFrequency(10000);
Serial.begin(9600);
SPI.begin();

}

float y11=0.0;
float y12=0.0;
float y13=0.0;
float y21=0.0;
float y22=0.0;
float y23=0.0;
float y31=0.0;
float y32=0.0;
float y33=0.0;

float Ub11,Ub12,Ub13,Ub21,Ub22,Ub23,Ub31,Ub32,Ub33;
float IN11,IN12,IN13,IN21,IN22,IN23,IN31,IN32,IN33;
float y11New,y12New,y13New,y21New,y22New,y23New,y31New,y32New,y33New;

void loop() {

// put your main code here, to run repeatedly:


// //Diagonal input
// float U11=1; float U12=-1; float U13=1;
// float U21=-1; float U22=1; float U23=-1;
// float U31=1; float U32=-1; float U33=1;

//Cross input
float U11=-1.0; float U12=1.0; float U13=-1.0;
float U21=1.0; float U22=1.0; float U23=1.0;
float U31=-1.0; float U32=1.0; float U33=-1.0;

//Templates A and b
//A:
float A11=0.045404; float A12=0.046816; float A13=0.046482;
float A21=0.046741; float A22=4.0472; float A23=0.046741;
float A31=0.046482; float A32=0.046816; float A33=0.045404;

//b
float b11=0.063908; float b12=-0.061448; float b13=0.079005;
float b21=-0.061448; float b22=0.052166; float b23=-0.061448;
float b31=0.079005; float b32=-0.061448; float b33=0.063908;

//I
float I=0.047155;


// float y11 = analogRead(A0);
// float y12 = analogRead(A1);
// float y13 = analogRead(A2);
// float y21 = analogRead(A3);
// float y22 = analogRead(A0.7);
// float y23 = analogRead(A5);
// float y31 = analogRead(A6);
// float y32 = analogRead(A7);
// float y33 = analogRead(A8);

int counter=0;
if ( counter==0)
{

y22New=y11*A11+y12*A12+y13*A13+y21*A21+y22*A22+y23*A23+y31*A31+y32*A32+y33*A33;
Ub22=U11*b11+U12*b12+U13*b13+U21*b21+U22*b22+U23*b23+U31*b31+U32*b32+U33*b33;
y11New=y11*A11+y12*A12+y21*A21+y22*A22;
Ub11=U11*b11+U12*b12+U21*b21+U22*b22;
y12New=y11*A11+y12*A12+y13*A13+y21*A21+y22*A22+y23*A23;
Ub12=U11*b11+U12*b12+U13*b13+U21*b21+U22*b22+U23*b23;
y13New=y12*A12+y13*A13+y22*A22+y23*A23;
Ub13=U12*b12+U13*b13+U22*b22+U23*b23;
y21New=y11*A11+y12*A12+y21*A21+y22*A22;
Ub21=U11*b11+U12*b12+U21*b21+U22*b22;
y23New=y12*A12+y13*A13+y22*A22+y23*A23+y32*A32+y33*A33;
Ub23=U12*b12+U13*b13+U22*b22+U23*b23+U32*b32+U33*b33;
y31New=y21*A21+y22*A22+y31*A31+y32*A32;
Ub31=U21*b21+U22*b22+U31*b31+U32*b32;
y32New=y21*A21+y22*A22+y23*A23+y31*A31+y32*A32+y33*A33;
Ub32=U21*b21+U22*b22+U23*b23+U31*b31+U32*b32+U33*b33;
y33New=y22*A22+y23*A23+y32*A32+y33*A33;
Ub33=U22*b22+U23*b23+U32*b32+U33*b33;

IN11=y11New+Ub11;
IN12=y12New+Ub12;
IN13=y13New+Ub13;
IN21=y21New+Ub21;
IN22=y22New+Ub22;
analogWrite(35,IN22);//pin 2.2
IN23=y23New+Ub23;
IN31=y31New+Ub31;
IN32=y32New+Ub32;
IN33=y33New+Ub33;

y11=0.7*tanh(2.0*IN11);
y12=0.7*tanh(2.0*IN12);
y13=0.7*tanh(2.0*IN13);
y21=0.7*tanh(2.0*IN21);
y22=analogRead(A8);//0.7*tanh(2*IN22)+I; pin 9.0
delay(500);
y23=0.7*tanh(2.0*IN23);
y31=0.7*tanh(2.0*IN31);
y32=0.7*tanh(2.0*IN32);
y33=0.7*tanh(2.0*IN33);
counter=1;
}
else{


y22New=y11*A11+y12*A12+y13*A13+y21*A21+y22*A22+y23*A23+y31*A31+y32*A32+y33*A33;
Ub22=U11*b11+U12*b12+U13*b13+U21*b21+U22*b22+U23*b23+U31*b31+U32*b32+U33*b33;
y11New=y11*A11+y12*A12+y21*A21+y22*A22;
Ub11=U11*b11+U12*b12+U21*b21+U22*b22;
y12New=y11*A11+y12*A12+y13*A13+y21*A21+y22*A22+y23*A23;
Ub12=U11*b11+U12*b12+U13*b13+U21*b21+U22*b22+U23*b23;
y13New=y12*A12+y13*A13+y22*A22+y23*A23;
Ub13=U12*b12+U13*b13+U22*b22+U23*b23;
y21New=y11*A11+y12*A12+y21*A21+y22*A22;
Ub21=U11*b11+U12*b12+U21*b21+U22*b22;
y23New=y12*A12+y13*A13+y22*A22+y23*A23+y32*A32+y33*A33;
Ub23=U12*b12+U13*b13+U22*b22+U23*b23+U32*b32+U33*b33;
y31New=y21*A21+y22*A22+y31*A31+y32*A32;
Ub31=U21*b21+U22*b22+U31*b31+U32*b32;
y32New=y21*A21+y22*A22+y23*A23+y31*A31+y32*A32+y33*A33;
Ub32=U21*b21+U22*b22+U23*b23+U31*b31+U32*b32+U33*b33;
y33New=y22*A22+y23*A23+y32*A32+y33*A33;
Ub33=U22*b22+U23*b23+U32*b32+U33*b33;

IN11=y11New+Ub11;
IN12=y12New+Ub12;
IN13=y13New+Ub13;
IN21=y21New+Ub21;
IN22=y22New+Ub22;
analogWrite(35,IN22);//p.n 2.2
IN23=y23New+Ub23;
IN31=y31New+Ub31;
IN32=y32New+Ub32;
IN33=y33New+Ub33;

y11=0.7*tanh(2.0*IN11);
y12=0.7*tanh(2.0*IN12);
y13=0.7*tanh(2.0*IN13);
y21=0.7*tanh(2.0*IN21);
y22=analogRead(A8);//0.7*tanh(2*IN22)+I; pin9.0
float voltage =Serial.println(y22*3.0/1023.0);
y23=0.7*tanh(2.0*IN23);
y31=0.7*tanh(2.0*IN31);
y32=0.7*tanh(2.0*IN32);
y33=0.7*tanh(2.0*IN33);


}

}

  • I forgot to mention that I want also to display the value of IN22 analogWrite(35,IN22).
  • Hi Sali,
    I suggest using CCS/IAR to debug step by step of the code and check where the code goes wrong.

    Best regards,
    Cash Hao
  • You have no serial output statements. At the very least put a Serial.Print("Hello, World!\n") in Setup().
  • Thanks for your reply, I added that and I had the following error:

    Energia: 1.6.10E18 (Windows 7), Board: "MSP-EXP430FR6989LP"

    C:\energia-1.6.10E18-windows\energia-1.6.10E18\arduino-builder -dump-prefs -logger=machine -hardware "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware" -tools "C:\energia-1.6.10E18-windows\energia-1.6.10E18\tools-builder" -tools "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430" -built-in-libraries "C:\energia-1.6.10E18-windows\energia-1.6.10E18\libraries" -libraries "C:\Energia\libraries" -fqbn=energia:msp430:MSP-EXP430FR6989LP -ide-version=10610 -build-path "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp" -warnings=none -prefs=build.warn_data_percentage=75 -verbose "C:\Energia\_3by3\_3by3.ino"
    C:\energia-1.6.10E18-windows\energia-1.6.10E18\arduino-builder -compile -logger=machine -hardware "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware" -tools "C:\energia-1.6.10E18-windows\energia-1.6.10E18\tools-builder" -tools "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430" -built-in-libraries "C:\energia-1.6.10E18-windows\energia-1.6.10E18\libraries" -libraries "C:\Energia\libraries" -fqbn=energia:msp430:MSP-EXP430FR6989LP -ide-version=10610 -build-path "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp" -warnings=none -prefs=build.warn_data_percentage=75 -verbose "C:\Energia\_3by3\_3by3.ino"
    Using board 'MSP-EXP430FR6989LP' from platform in folder: C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430
    Using core 'msp430' from platform in folder: C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430
    Detecting libraries used...
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad\LCD_Launchpad.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\adc10_b.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\adc12_a.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\adc12_b.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\aes256.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\comp_b.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\comp_d.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\comp_e.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\crc.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\cs.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\dma.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\eusci_a_spi.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\eusci_a_uart.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\eusci_b_i2c.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\eusci_b_spi.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\flash.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\fram.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\gpio.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\mpu.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\mpy32.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\pmap.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\pmm.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\ram.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\ref.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\ref_a.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\rtc_a.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\rtc_b.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\sfr.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\sys.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\timer_a.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\timer_b.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\tlv.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\ucs.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\usci_a_spi.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\usci_a_uart.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\usci_b_i2c.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\usci_b_spi.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib\utility\wdt_a.c" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI\SPI.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI\utility\eusci_spi.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI\utility\usci_spi.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI\utility\usi_spi.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal\LiquidCrystal.cpp" -o "nul"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "nul"
    Generating function prototypes...
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -w -x c++ -E -CC -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\preproc\ctags_target_for_gcc_minus_e.cpp"
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\tools-builder\ctags\5.8-arduino10/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\preproc\ctags_target_for_gcc_minus_e.cpp"
    Compiling sketch...
    "C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/bin/msp430-g++" -c -g -O2 -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=msp430fr6989 -DF_CPU=8000000L -DARDUINO=10610 -DENERGIA=10610 -DENERGIA_MSP-EXP430FR6989LP -DENERGIA_ARCH_MSP430 -IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\tools\msp430/include "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\cores\msp430" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\variants\MSP-EXP430FR6989LP" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad" "-IC:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib" "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp" -o "C:\Users\Sally\AppData\Local\Temp\buildc77bd42101a9c9e992143630321d72b9.tmp\sketch\_3by3.ino.cpp.o"
    C:\Energia\_3by3\_3by3.ino: In function 'void setup()':

    _3by3:20: error: invalid use of 'Print::Print'

    Using library LCD_Launchpad at version 1.0.0 in folder: C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LCD_Launchpad
    Using library DriverLib at version 1.0.0 in folder: C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\DriverLib
    Using library SPI at version 1.0.0 in folder: C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\SPI
    Using library LiquidCrystal at version 1.0.0 in folder: C:\energia-1.6.10E18-windows\energia-1.6.10E18\hardware\energia\msp430\libraries\LiquidCrystal
    exit status 1
    invalid use of 'Print::Print'

  • I would strip out all the LCD and SPI at this point and just focus on the serial monitor.

    Have you tried a simple hellow world or blinky program?

    For Energia questions it is best to ask on the Energia forum at 43oh.com
  • I tried some examples in Energia but they did not work !, I just posted in Energia forum right now .
  • Does this issue still open?

**Attention** This is a public forum