Thanks in advance,
Have a nice day,
Pradeep
--
R Pradeep Chandran | Tel(Off) : +91-80-8091438
Siemens Information Systems Ltd. | Fax(Off) : +91-80-8521130
#84, Keonics Electronics City, | http://www.sislindia.com/
Bangalore, India |
> I am looking for an open source, freeware intel hex converter
>that can convert raw binary files (not the output files generated by
>compilers) to intel hex format. I need to flash some data files. These
>files can contain any valid ASCII character. Also the converter need
>to output 32 bit addresses so that I can flash data files greater
>than 64k.
The "objcopy" program from the Gnu binutils package can
read/write a whole slew of file formats (including binary,
Intel Hex, Motorola S-records, ELF, COFF, ...).
--
Grant Edwards grante Yow! Hello? Enema
at Bondage? I'm calling
visi.com because I want to be happy,
I guess...
You want objcopy, from the GNU binary utilities. Get it from
ftp://ftp.gnu.org/gnu/binutils or a mirror, or alternatively
http://sources.redhat.com/binutils or a mirror.
Invoke objcopy as, for example,
objcopy -O ihex file.bin file.ihex
Jifl
--
Red Hat, 35 Cambridge Place, Cambridge, UK. CB2 1NS Tel: +44 (1223) 728762
"Plan to be spontaneous tomorrow." || These opinions are all my own fault
Peter Miller's SRecord package is great for things like that:
http://www.canb.auug.org.au/~millerp/srecord.html
(Despite the name, it does many other formats including Intel Hex.)