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.

CCS/LAUNCHXL-F28069M: working with MatLab, or LabView, or just a simply excel sheet

Part Number: LAUNCHXL-F28069M
Other Parts Discussed in Thread: C2000WARE

Tool/software: Code Composer Studio

Hi everyone this is Mike

I want to know some Guidelines to work the launchpad with other software in order to take some data and do some other stuff (Analysis, display data, some digital filters on matlab, doing graphs with the excel)

But I don't how to make my first steps

If somebody could explain to me this please

Best regards

Mike 

  • Mike,

    I guess it depends on what you are actively trying to do. i.e. how much real-time analysis is required.

    C2000 devices have multiple serial ports that can be accessed using standard off-the-shelf software, such as UART, SPI, I2C, USB, CAN, Ethernet, and more. There are many third-party devices out there to facilitate the connection to a PC. One would only need to build their own software on top of that to do what they want to do.

    I can share my experience with this, and I have notified others who may chime in as well.

    With UART, you can purchase a Serial-to-USB adapter and be connected to a serial socket with programs like LabVIEW, Python, or MATLAB. If you develop a command/response architecture, you can make your client software more generic to handle other MCUs in the future. I have personally used terminal output, to display current status information. I have also used the Serial VIs in Labview to access, read, and write, variables within my application during runtime. During validation/characterization of our devices, we utilize CAN, JTAG, UART, and others in a similar fashion to help automate our testing by actively changing variables.

    Really any of our serial ports are capable of being connected to a PC. Some may require additional hardware like adapter cables, but others like USB, or Ethernet need only be plugged in.

    Here is a list of examples to help guide you with what is possible all found within C2000Ware or other C2000 support packages
    C:\ti\c2000\C2000Ware_1_00_05_00\device_support\f2806x\examples\c28\sci_echoback
    C:\ti\c2000\C2000Ware_1_00_05_00\device_support\f2806x\examples\c28\usb_dev_bulk
    http://www.ti.com/tool/SFRA
    https://dev.ti.com/gc/


    I hope this helps get you started.

    -Mark
  • Great!
    Thanks Mark