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>
avr-gcc is available for Windows too, so you can do it in exactly the same way on Windows. You need WInAVR