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.

TMS320F28069m Energia Upload Failure

Other Parts Discussed in Thread: ENERGIA, CONTROLSUITE

So I'm trying to compile the BlinkLED from basic example codes, and the code does compile, but when I try to upload it, this is the message I get.

Ensure a jumper is placed on JP7 and that the jumper is removed from JP6, and that the boost switches (S1) are ON-OFF-OFF (UP-DOWN-DOWN), and press the reset button before clicking OK. If the download fails try a baud rate below 38400.

And the problem is, I'm following the instruction perfectly except for the baud rate for that I don't know how to adjust it. But I already set board and serial port configuration  same as the video that Texas Instruments uploaded on Youtube. So I'm wondering if anyone could come up with an answer and help me with this.

  • Hi,

    What about drivers? Did you check the device manager?

    Regards,
    Gautam
  • I searched for latest driver and device manager tells me it is already the latest. I already installed CCS, doesn't the drivers come with CCS?
    ps. I also followed the instructions how to install energia.
  • If you've installed CCS then, it will take care of drivers. Then its strange that you're unable to connect to the kit. Can you try running a sample code from controlSuite?
  • Oh, I didn't come clear about that. My problem is that I've managed to succesfully perform LED example code from controlSuite in CCS, but somehow the example code from energia won't upload.
  • Let me link here. He might be able to share his views.
    Please be patient.

    Regards,
    Gautam
  • Since it's night time here, I'll leave a comment here to help you figure it out with what I've done so far Trey. So I've been trying to solve this out using energia with CCS Simple perspective, and I could get more specific errors.
    The errors are #10010 and #10099-D. They show "Project".out not built, and program will not fit into available memory, respectively.
    And my project has very simple code.

    void setup() {
    // put your setup code here, to run once:
    pinMode(RED_LED, OUTPUT);
    }

    void loop() {
    // put your main code here, to run repeatedly:
    digitalWrite(RED_LED, HIGH);
    }

    This is just the whole code and I believe there's no way this program will not fit into any sort of microcontroller.

    And so I looked up your replies in the past and tried to compile with another linker files. As you'd mentioned, cmds in controlSUITE were the latest, so I've tried all of them including linker files indicating flash memories. And the result is another bunch of errors including those two.

    So this is what I've figured out so far. Thank you in advance and wish you could help me taking advantage of what I've found out :)
  • Hi Hyun,

    The baud rate can be changed by opening the serial monitor in Energia.  There is a drop down box where it can be set.  Simply set it below 38400 baud and close the window.  Then, try uploading again.

    Yes, the blinky example can be built and uploaded using CCS, but I guess it's having linker errors.  What version of Energia do you have?  What linker file is CCS using?

    BR,

  • I already tried modulating baud rate in serial monitor but it didn't bring any different consequence.

    And I'm using energia 0101E0016 version.

    About the linker file, at default, CCS does not show what linker file it's using. I can only see a blank in build setting. So I tried with other linker files from controlSUITE, everything that shows 28069 model is available of. But nothing seems to work..

    I went with the linker files in ti\controlSUITE\device_support\f2806x\v150\F2806x_common\cmd

  • I also think it is having linker errors. Using energia, it has no problem in the veryfing process, but when I try to upload, error occurs.
    And using CCS, I can't build the project and it shows that .out file was not built.

    Since both energia and CCS are having problem with the linking process and that I've already tried with possible cmd files I could use, I believe there is more than just changing the settings on build settings on CCS.
  • After you lower the baud rate in Energia, what is the symptom of the failure? Are there any error messages or does the LED just not blink after programming?

    I just checked and I'm having trouble building C2000 Energia projects inside of CCS. Basically, CCS isn't creating the dependent core project correctly. Instead of only pulling in the files for F28069 support its pulling in the files for both F28069 and F28027 which in turn causes the linker to fail. I'll address this with the CCS team. Thanks for bringing this to my attention.
  • Baud rate is set to 9600 at default, and I tried to change the value to any rate below 38400 and I get the same error.

    Ensure a jumper is placed on JP7 and that the jumper is removed from JP6, and that the boost switches (S1) are ON-OFF-OFF (UP-DOWN-DOWN), and press the reset button before clicking OK. If the download fails try a baud rate below 38400.

    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.pp", "C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, --asm_extension=S, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_CodeStartBranch.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_CodeStartBranch.S", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_CodeStartBranch.S.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, --asm_extension=S, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_usDelay.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_usDelay.S", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_usDelay.S.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\random.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\random.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\random.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\WInterrupts.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\WInterrupts.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\WInterrupts.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_analog.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_analog.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_analog.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_digital.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_digital.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_digital.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_pulse.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_pulse.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_pulse.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_shift.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\wiring_shift.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_shift.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Adc.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Adc.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Adc.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Comp.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Comp.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Comp.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_CpuTimers.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_CpuTimers.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_CpuTimers.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_DefaultIsr.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_DefaultIsr.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_DefaultIsr.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Dma.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Dma.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Dma.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_ECan.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_ECan.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_ECan.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_ECap.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_ECap.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_ECap.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_EPwm.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_EPwm.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_EPwm.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_EQep.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_EQep.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_EQep.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Gpio.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Gpio.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Gpio.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_HRCap.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_HRCap.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_HRCap.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_I2C.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_I2C.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_I2C.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Mcbsp.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Mcbsp.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Mcbsp.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_OscComp.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_OscComp.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_OscComp.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_PieCtrl.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_PieCtrl.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_PieCtrl.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_PieVect.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_PieVect.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_PieVect.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Sci.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Sci.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Sci.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Spi.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_Spi.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Spi.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_SWPrioritizedDefaultIsr.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_SWPrioritizedDefaultIsr.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_SWPrioritizedDefaultIsr.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_SWPrioritizedPieVect.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_SWPrioritizedPieVect.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_SWPrioritizedPieVect.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_SysCtrl.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_SysCtrl.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_SysCtrl.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_TempSensorConv.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_common\source\F2806x_TempSensorConv.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_TempSensorConv.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_headers\source\F2806x_GlobalVariableDefs.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\F2806x_headers\source\F2806x_GlobalVariableDefs.c", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_GlobalVariableDefs.c.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\HardwareSerial.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\HardwareSerial.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\HardwareSerial.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\main.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\main.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\main.cpp.o]
    "C:\energia-0101E0016\hardware\c2000\cores\c2000\main.cpp", line 15: warning #238-D: controlling expression is constant
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\new.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\new.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\new.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\Print.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\Print.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Print.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\Stream.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\Stream.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Stream.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\TimerAPI.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\TimerAPI.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\TimerAPI.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\TimerSerial.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\TimerSerial.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\TimerSerial.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\Tone.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\Tone.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Tone.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\WMath.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\WMath.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\WMath.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --include_path="C:\energia-0101E0016\hardware\c2000\cores\c2000", --include_path="C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", --include_path="C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --gen_func_subsections=on, --display_error_number, --diag_wrap=off, --preproc_with_compile, --preproc_dependency="C:\energia-0101E0016\hardware\c2000\cores\c2000\WString.pp", "C:\energia-0101E0016\hardware\c2000\cores\c2000\WString.cpp", --output_file=C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\WString.cpp.o]
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_CodeStartBranch.S.o]
      ==>  new archive 'core.a'
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_usDelay.S.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\random.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\WInterrupts.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_analog.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_digital.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_pulse.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\wiring_shift.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Adc.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Comp.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_CpuTimers.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_DefaultIsr.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Dma.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_ECan.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_ECap.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_EPwm.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_EQep.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Gpio.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_HRCap.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_I2C.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Mcbsp.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_OscComp.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_PieCtrl.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_PieVect.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Sci.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_Spi.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_SWPrioritizedDefaultIsr.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_SWPrioritizedPieVect.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_SysCtrl.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_TempSensorConv.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\F2806x_GlobalVariableDefs.c.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\HardwareSerial.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\main.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\new.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Print.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Stream.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\TimerAPI.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\TimerSerial.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Tone.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\WMath.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\ar2000, r, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\WString.cpp.o]
      ==>  building archive 'core.a'
    [C:\energia-0101E0016\hardware\tools\c2000\bin\cl2000, -v28, -ml, -mt, -g, --gcc, --define=ENERGIA=16, --define=F_CPU=90000000L, --define=TMS320F28069, --define=ARDUINO=101, --diag_warning=225, --display_error_number, --diag_wrap=off, -z, --stack_size=0x300, --warn_sections, -i"C:\energia-0101E0016\hardware\c2000\cores\c2000", -i"C:\energia-0101E0016\hardware\c2000\..\tools\c2000\include", -i"C:\energia-0101E0016\hardware\c2000\variants\launchpad_f28069", -i"C:\energia-0101E0016\hardware\c2000\..\tools\c2000\lib", --reread_libs, --display_error_number, --diag_wrap=off, --entry_point=code_start, --rom_model, -oC:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.cpp.out, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.cpp.o, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\core.a, -lrts2800_ml.lib, C:\energia-0101E0016\hardware\c2000\cores\c2000//F2806x_common//cmd//F28069.cmd, C:\energia-0101E0016\hardware\c2000\cores\c2000//F2806x_headers//cmd//F2806x_Headers_nonBIOS.cmd]
    <Linking>
    warning #10210-D: creating ".esysmem" section with default size of 0x400; use the -heap option to change the default size
    warning #10063-D: entry-point symbol other than "_c_int00" specified:  "code_start"
    [C:\energia-0101E0016\hardware\tools\c2000\bin\hex2000, -boot, -sci8, -a, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.cpp.out, -o, C:\Users\admin\AppData\Local\Temp\build8083064422287435184.tmp\Blink.cpp.txt]
    Translating to ASCII-Hex format...
       "Blink.cpp.out" .cinit ==> (BOOT TABLE)
       "Blink.cpp.out" .pinit ==> (BOOT TABLE)
       "Blink.cpp.out" codestart ==> (BOOT TABLE)
       "Blink.cpp.out" ramfuncs ==> (BOOT TABLE)
       "Blink.cpp.out" .text ==> (BOOT TABLE)
       "Blink.cpp.out" .econst ==> (BOOT TABLE)
    Put C2000 LaunchPad switches (S1) ON-OFF-OFF (UP-DOWN-DOWN), ensure the back channel serial connection is enabled, and press the reset button.  If the download fails try a baud rate below 38400.
    java.lang.NullPointerException
    	at java.lang.ProcessBuilder.start(ProcessBuilder.java:441)
    	at java.lang.Runtime.exec(Runtime.java:593)
    	at java.lang.Runtime.exec(Runtime.java:466)
    	at processing.app.debug.Uploader.executeUploadCommand(Uploader.java:232)
    	at processing.app.debug.C2000Uploader.uploadUsingPreferences(C2000Uploader.java:384)
    	at processing.app.Sketch.upload(Sketch.java:1729)
    	at processing.app.Sketch.exportApplet(Sketch.java:1671)
    	at processing.app.Sketch.exportApplet(Sketch.java:1641)
    	at processing.app.Editor$DefaultExportHandler.run(Editor.java:2521)
    	at java.lang.Thread.run(Thread.java:619)
    

    This is what the console shows and I ensured that baud rate is at 9600, there's a jumper on JP7 and removed from JP6.

  • The box that pops up is not an error, just instructions for how to configure the board for a successful upload.

    The error you're getting in the console looks like the uploader program may not be there.  Can you confirm that serial_loader2000.exe is in:

    \energia-0101E0016\hardware\c2000\serial_loader2000\Release

  • Yeap, it is there
  • I tried doing this in three personal computers and they all give me the same result...
  • Ok, let me look into this a little more. I'll get back to you shortly.
  • Can you check to see that executable is in the debug directory (right next to the release directory). I just tested this on my PC and I'm not getting this error.
  • Yes both directories have serial_loader2000 executable file.
  • Ok, we are continuing to look into this.  I'll let you know as soon as we have it figured out.

    In the mean time, what version of the JRE do you have installed on your machine?  What version of Windows are you using?

  • Windows Embedded 8.1 Industry Pro
    jre1.8.0_51

    But I didn't know anything about java so I just installed JRE and rebooted my PC and energia still didn't work.
    Is there any possibility that this could be the cause??
  • I'm not familiar with Windows Embedded.  Perhaps this could be the cause?

    We tested this release on numerous PCs here, but have been unable to reproduce the issue.  I do not have access to a Windows Embedded 8 machine to test on.

  • Okay, so I gave a try to same procedure on labtop with Windows 7 and it finally did work lol.
    Thanks for the tip. And I really wish anyone could make Windows 8 compatible or at least give a notice about it.