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/CC3220SF-LAUNCHXL: Unable to generate a bin file for my project

Part Number: CC3220SF-LAUNCHXL
Other Parts Discussed in Thread: CC3220SF

Tool/software: Code Composer Studio

Hi Experts,

I'm using CC3220SF launchapd with latest simplelink SDK. For creating a project I choosed empty project and on top of that I modified with my application but the problem is I'm unbale to generate .bin. Please tell me how enable option to generate bin file.

  • Hi Manish,

    Bin file is generated at post-build step in CCS. You should copy this post-build step from one of SDK examples into your project.

    Jan

  • Manish, Jan is correct. You can check the post build step in example project by clicking properties->build->steps and look at the post build steps window on the bottom. You should see something like this:

    ${CG_TOOL_ROOT}/bin/armobjcopy -O binary --only-section .text --only-section .const --only-section .cinit --only-section .resetVecs ${BuildArtifactFileName} ${BuildArtifactFileBaseName}.bin

    This will generate a .bin after you build your project. It can be found in the debug folder of your project.

    Jesu

  • Thanks Jan and Jesu