summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-05-05 21:08:53 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-05-05 21:08:53 +0800
commit129fef686fff32e811b5f8394e881ca696e9b1b0 (patch)
tree2f1c61b02c935ecc60a43f97e5b73284b5a7e751 /Makefile
parent56a6813170e570bc901ec1ceda0f9f563518334c (diff)
downloadavr-fpm-drivers-129fef686fff32e811b5f8394e881ca696e9b1b0.tar.gz
wip: r503.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 41ebd02..98738b6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
CC = avr-gcc
MCU = atmega328p
PORT = /dev/cuaU0
-TARGET = fend
-FPM_NEWPWD = 0x00
+TARGET = app
SRC = main.c fpm.c
OBJ = $(SRC:.c=.o)
@@ -13,7 +12,6 @@ CFLAGS += -Wall
CFLAGS += -mmcu=$(MCU)
CFLAGS += -DBAUD=57600
CFLAGS += -DF_CPU=16000000UL
-CFLAGS += -DDEBUG=0
CFLAGS += -DFPM_PWD=$(FPM_PWD)
CFLAGS += -ffunction-sections -fdata-sections