]> www.fi.muni.cz Git - tinyboard.git/blobdiff - projects/step-up/Makefile
Makefile adjusted for Tiny45
[tinyboard.git] / projects / step-up / Makefile
index 1b0113eab0835166c7648ed1dced01769b1b9228..67353fafd77cd41f68c41484bf1e4389a8d2583c 100644 (file)
@@ -1,13 +1,11 @@
 
 PROGRAM=lights
-SRC=main.c logging.c adc.c pwm.c tmr.c pwmled.c gpio.c ambient.c pattern.c \
-       buttons.c battery.c control.c
+SRC=main.c logging.c pwm.c adc.c
 OBJ=$(SRC:.c=.o)
 
 
-MCU=attiny861a
-# AVRDUDE_MCU=$(MCU)
-AVRDUDE_MCU=attiny861
+MCU=attiny45
+AVRDUDE_MCU=$(MCU)
 AVRDUDE_PROGRAMMER=usbasp
 
 CFLAGS=-Wall -Os -mmcu=$(MCU) -DUSE_LOGGING=1 -DF_CPU=1000000UL -std=gnu99