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>
Maybe this is what you're looking for:http://www.engineersgarage.com/forums/8051/how-convert-c-code-hex-code-using-keil-compiler