Hi,
I'm using Arm Development Studio Gold Edition 2022.2I was using the "fromelf" utility with "--bin" option (for a plain binary) to convert a given .axf file into .bin file.
However i would like to know with your help how to convert my .axf or.bin file into a binary that only includes 0 & 1 digits?Something like "hex2bin" utility, that convert hex digits into binary digits?
Thanks,
Ronen
Thanks for the pictorial clarification :)As I wrote before, I'm not aware of any Arm-provided tool that can do this.It should be straightforward for you to write some simple C code or Python script to read bytes from the file, perform the conversion, and write the 0s & 1s to an output file.Stephen