]> git.zarvox.org Git - usbsnes.git/commitdiff
Modify Makefile to work (fuses, clock rate, etc)
authorDrew Fisher <drew.m.fisher@gmail.com>
Tue, 20 Apr 2010 03:30:49 +0000 (23:30 -0400)
committerDrew Fisher <drew.m.fisher@gmail.com>
Tue, 20 Apr 2010 03:30:49 +0000 (23:30 -0400)
Makefile

index 6bdbb5b0a760c113fae829eb01781a3458ce2efa..fa79efa81625ab6d8ad83a59f134c6a46ff6d6ee 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
 
 DEVICE  = atmega328p
 F_CPU   = 18000000     # in Hz
-FUSE_L  = # see below for fuse values for particular devices
-FUSE_H  = 
+FUSE_L  = 0xd7# see below for fuse values for particular devices
+FUSE_H  = 0xd9
 
-AVRDUDE = avrdude -c stk500v2 -p $(DEVICE) # edit this line for your programmer
+AVRDUDE = avrdude -c stk500 -B 2 -p $(DEVICE) -P /dev/ttyACM0 # edit this line for your programmer
 
 CFLAGS  = -Iusbdrv -I. -DDEBUG_LEVEL=0
 OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o snes.o
@@ -113,6 +113,9 @@ fuse:
 flash: main.hex
        $(AVRDUDE) -U flash:w:main.hex:i
 
+terminal:
+       $(AVRDUDE) -t
+
 # rule for deleting dependent files (those which can be built by Make):
 clean:
        rm -f main.hex main.lst main.obj main.cof main.list main.map main.eep.hex main.elf *.o usbdrv/*.o main.s usbdrv/oddebug.s usbdrv/usbdrv.s