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.

Programming CC3200 with OpenOCD

Other Parts Discussed in Thread: CC3200, UNIFLASH

I have OpenOCD up and running with CC3200 Launchpad and I am able to debug using GDB on Linux. Is it also possible to program the CC3200 using OpenOCD?

  • Our flashing tools UNIFLASH is currently supported for Windows only.

    Regards,
    Geet

  • You mean writing the application you wish to RAM for debug purposes? That should work.

    If your query is about flashing the SPI flash then I think you would need to write a short application to support writing to flash. It should be written in a way to check predefined area of RAM for operation it should do and optional parameters like file name and file content. You would then use script to control your debugger to first load this application to RAM and start it and then populate mentioned predefined areas with data and wait for application to complete a cycle. Script would repeat this until everything is written to SPI flash. I imagine you would write larger files in multiple similar steps. In fact now that I think of it you should wrap FS API calls to be called from script working with your debugger.