summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-03-16 22:42:28 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-03-16 22:42:28 +0800
commitbf6ef289ec177e717fc71af866d7a085f5e34b6b (patch)
tree64e8af831b13c352ed25af631964acccbeb97b7f /Makefile
parente4d82ccac81cad4afdaa79de90a1bf4f3591c70c (diff)
downloadavr-nrf24l01-driver-bf6ef289ec177e717fc71af866d7a085f5e34b6b.tar.gz
Refactor radio code to separate header.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8762701..487d6ba 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC = avr-gcc
MCU = atmega328p
TARGET = app
-SRC = main.c uart.c
+SRC = main.c uart.c nrfm.c
OBJ = $(SRC:.c=.o)
CFLAGS = -std=gnu99