Build Instructions - bcg 3/4/10 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # To build the Tellymate firmware: make -C 3rdParty/tellymate-1100 # To build the software for Unix (for test and debug) scons ARCH=unix # To build the software for AVR (incl .hex files) scons ARCH=avr All binaries are built in build/unix/ or build/atmega328p-20/ Except tellymate, which is built in-place. # program VIDEO MCU sudo avrdude -vvv -B 8 -F -c avrispmkII -p m168 -P usb -Uflash:w:3rdParty/tellymate-1100/main.hex:i # program MAIN MCU sudo avrdude -vvv -B 8 -F -c avrispmkII -p m328p -P usb -Uflash:w:build/atmega328p-20/apps/WikiMain.hex:i See ../README.txt for more information about directory structure. ----