X-Git-Url: https://git.cryptolib.org/?p=labortage2013badge.git;a=blobdiff_plain;f=firmware%2FMakefile;h=c669ba5bb522d7476d2c1a8cf5f52b0e998f9972;hp=2172ea9a0df602b32a900129be794d9279c072c1;hb=eea0eb4ce28f94df77c735fa0806b2d2f5f9fa5f;hpb=0d4a960366f54929578b573276d8f7b6fe48a044 diff --git a/firmware/Makefile b/firmware/Makefile index 2172ea9..c669ba5 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -7,7 +7,7 @@ # License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt) # This Revision: $Id: Makefile 692 2008-11-07 15:07:40Z cs $ -DEVICE = attiny45 #attiny45 +DEVICE = attiny85 #attiny45 F_CPU = 16500000 FUSE_L = 0xe1# 1110.0001 FUSE_H = 0x9d# 1001.1101 @@ -17,7 +17,7 @@ AVRDUDE_DW = avrdude -c jtag2dw -P usb -p $(DEVICE) # edit this line for your CFLAGS = -Iusbdrv -I. -DDEBUG_LEVEL=0 OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o \ - special_functions.o + percnt2.o sha1-asm.o hmac-sha1.o hotp.o special_functions.o COMPILE = avr-gcc -Wall -Os -DF_CPU=$(F_CPU) $(CFLAGS) -mmcu=$(DEVICE) COMPILEPP = avr-g++ -Wall -Os -DF_CPU=$(F_CPU) $(CFLAGS) -mmcu=$(DEVICE)