aboutsummaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2012-03-16 14:56:48 +0000
committerDimitri Sokolyuk <demon@dim13.org>2012-03-16 14:56:48 +0000
commit068a3ce53eae4be94377e3e57cdc8a6b4e3c2916 (patch)
tree1f796e8f8e1f67d1a40e1be45ba2a1d429600e16 /firmware/Makefile
parent8defb772af1c076ff97227e9f3d5eab07f33f320 (diff)
don't set default values
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 935980b..f80d362 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -5,7 +5,6 @@ NOMAN=
MCU_TARGET= atmega328p
F_CPU= 20000000
-BAUD= 9600
ORG= 0x7e00 # Table 27-13, 4 Pages 265 words * 2
# You should not have to change anything below here.
@@ -15,8 +14,7 @@ OBJCOPY= avr-objcopy
OBJDUMP= avr-objdump
SIZE= avr-size
-CFLAGS= -mmcu=${MCU_TARGET} -Wall -Os \
- -DF_CPU=${F_CPU} -DPRESCALE=${PRESCALE} -DBAUD=${BAUD}
+CFLAGS= -mmcu=${MCU_TARGET} -Wall -Os -DF_CPU=${F_CPU}
LDFLAGS= -mmcu=${MCU_TARGET} \
-Wl,-Map,${PROG}.map,--section-start=.text=${ORG}