Changes between Initial Version and Version 1 of ArduinoNotes


Ignore:
Timestamp:
Nov 8, 2013, 10:17:54 AM (10 years ago)
Author:
Eric Hazen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ArduinoNotes

    v1 v1  
     1 Hey Eric,
     2 Here are the commands I used to program my arduino.
     3 
     4{{{
     5 avr-gcc -Os -DF_CPU=16000000UL -mmcu=atmega2560 -o blink.out blink.c
     6 avr-objcopy -O ihex -R .eeprom blink.out blink.hex
     7 sudo avrdude -c stk500v2 -p m2560 -P /dev/tty.usbmodem621 -U flash:w:blink.hex
     8 
     9}}}
     10{{{
     11 -Dan
     12
     13}}}