How to generate the raw binary file from PSoC creator 4.2 on PSoC4100S?

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

How to generate the raw binary file from PSoC creator 4.2 on PSoC4100S and how to flash the generated raw binary into PSoC 4100S?

0 Likes
1 Solution
DheerajK_81
Moderator
Moderator
Moderator
First comment on KBA First comment on blog 5 questions asked

In PSoC Creator, go to Build Settings > ARM GCC Version > User Commands where you can specify the post build commands to generate the bin file. For the conversion itself you will need a third party hex to bin converter tool. The commands for conversion should then be added based on the syntax provided by the third party tool in the post build.

Capture.PNG

"C:\Program Files (x86)\Cypress\PSoC Creator\4.4\PSoC Creator\import\gnu\arm\5.4.1\bin\arm-none-eabi-objcopy" -S -O binary ".\CortexM0p\ARM_GCC_541\Debug\Design01.elf" ".\CortexM0p\ARM_GCC_541\Debug\Design01.bin"

 

 

 

View solution in original post

0 Likes
1 Reply
DheerajK_81
Moderator
Moderator
Moderator
First comment on KBA First comment on blog 5 questions asked

In PSoC Creator, go to Build Settings > ARM GCC Version > User Commands where you can specify the post build commands to generate the bin file. For the conversion itself you will need a third party hex to bin converter tool. The commands for conversion should then be added based on the syntax provided by the third party tool in the post build.

Capture.PNG

"C:\Program Files (x86)\Cypress\PSoC Creator\4.4\PSoC Creator\import\gnu\arm\5.4.1\bin\arm-none-eabi-objcopy" -S -O binary ".\CortexM0p\ARM_GCC_541\Debug\Design01.elf" ".\CortexM0p\ARM_GCC_541\Debug\Design01.bin"

 

 

 

0 Likes