aboutsummaryrefslogtreecommitdiff
path: root/kernel/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/Makefile')
-rw-r--r--kernel/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index 3ef5bc3..0807a73 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -10,7 +10,6 @@ STACK = 64
TASKS = 8
SEMAPHORES = 8
BAUD = 9600
-ADCPRESCALE = 16
# You should not have to change anything below here.
@@ -21,8 +20,7 @@ SIZE = avr-size
OBJS = ${SRCS:.c=.o}
CFLAGS = -Wall -Os -mmcu=${MCU_TARGET} \
-DF_CPU=${F_CPU} -DPRESCALE=${PRESCALE} -DBAUD=${BAUD} \
- -DSTACK=${STACK} -DTASKS=${TASKS} -DSEMAPHORES=${SEMAPHORES} \
- -DADCPRESCALE=${ADCPRESCALE}
+ -DSTACK=${STACK} -DTASKS=${TASKS} -DSEMAPHORES=${SEMAPHORES}
LDFLAGS = -Wl,-Map,${PROG}.map
.SUFFIXES: .elf .lst .hex .bin .srec .ehex .ebin .esrec