summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 42cc0aa..41ebd02 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ CC = avr-gcc
MCU = atmega328p
PORT = /dev/cuaU0
TARGET = fend
+FPM_NEWPWD = 0x00
SRC = main.c fpm.c
OBJ = $(SRC:.c=.o)
@@ -13,6 +14,7 @@ CFLAGS += -mmcu=$(MCU)
CFLAGS += -DBAUD=57600
CFLAGS += -DF_CPU=16000000UL
CFLAGS += -DDEBUG=0
+CFLAGS += -DFPM_PWD=$(FPM_PWD)
CFLAGS += -ffunction-sections -fdata-sections
LDFLAGS = -mmcu=$(MCU)