C code to a HEX file

3.9k Views Asked by At

I'm using Linux in my work lab to convert .c code to .elf/.hex in order to load it to a Teensy++ 2.0. How could I do this using Windows at home? Is there a C to HEX converter?

This is the terminal commands I'm using in Linux:

avr-gcc -mmcu=at90usb1286 –o <output.elf> <input.c> usb_serial.c

avr-objcopy –O ihex <output.elf> <output.hex>

3

There are 3 best solutions below

0
On

avr-gcc is available for Windows too, so you can do it in exactly the same way on Windows. You need WInAVR

0
On

Clearly, if you are already used to avr-gcc on Linux and want to accomplish the same task on windows, then what you want is a build of avr-gcc for your windows box.

An easy way to obtain one is to install the Arduino IDE, which brings along its own copy. You can simply ignore the IDE and arduino libraries, and use the installed avr-gcc directly just as you do now.

Another source of a windows port is winavr

0
On