From eca4b0b0ecd38de931dc4d3141ec719c28b2af4b Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Mon, 25 Oct 2010 11:44:05 +0200 Subject: [PATCH] Makefile: add other configuration values in comments. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 14a2e49..587eb40 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,10 @@ SOURCES = $(PROGRAM).c serial.c dda.c gcode_parse.c gcode_process.c clock.c time # # ############################################################################## +#MCU_TARGET = atmega168 MCU_TARGET = atmega328p +#MCU_TARGET = atmega644p +#MCU_TARGET = atmega1280 F_CPU = 16000000L ############################################################################## @@ -71,6 +74,9 @@ AVRDUDECONF = /etc/avrdude.conf # # ############################################################################## PROGPORT = /dev/arduino +# atmega168 +#PROGBAUD = 19200 +# atmega328p, 644p, 1280 PROGBAUD = 57600 OBJ = $(patsubst %.c,%.o,${SOURCES})