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.

CC3235SF: Programming CC3235SF

Part Number: CC3235SF
Other Parts Discussed in Thread: UNIFLASH, , CC3200

Hi, the following is a very long question. I have developed a custom board with the CC3235SF. The board gets programmed over the UART interface. Basically, at this point, it is a multistep process. I compile my project to make a .bin file. Then I open UNIFLASH and select LAUNCHXL-CC3235SF (LaunchPad). After that, I start the image creator, open my project, and save the .sli image for the bootloader. After that, I open the UNIFLASH again to program the .sli image into CC3235SF. It is a very long process for code development and testing. I was wondering if there is a better way (a more efficient way) to program the CC3235SF over the UART interface.

Previously I worked with CC3200 and programming was a lot easier - open the UNIFLASH, select .bin file, and program CC3200. Is there a similar way to program CC3235SF?

Thank you.

  • Hi,

    I think you have two good option how improve your dev elopement workflow:

    @echo off
    cls
    
    // add user file index.html into Uniflash project
    call dslite.bat --mode cc32xx project add_file --name My-project-name --file web-nwp\index.html --fs_path /www/index.html --overwrite --max_size 4096 --flags "failsafe"
    // add binary file from compiller into Uniflash project
    call dslite.bat --mode cc32xx project add_file --name My-project-name --file wifi-file-from-compiler.bin --mcu --priv \certificate\dummy-development\dummy-root-ca-cert-key --cert dummy-root-ca-cert --overwrite --max_size 481280
    // program Unilfash project via COM port 5
    call dslite.bat --mode cc32xx project program --name My-project-name --port COM5 --dev

    For example I use Unilfash CLI and I have bat file inserted into my CCS workspace. That means I compile code and after that I click to bat file. That is all. You don't need to deal with Uniflash GUI...

    Jan