From d4d4114b316ff262024119925577915e4b5d75d9 Mon Sep 17 00:00:00 2001 From: Joseph Bryant Date: Wed, 17 Apr 2024 14:26:45 -0400 Subject: [PATCH] Fixes bug issue with &= for gcc --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 342630b..2c74da6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = avr-gcc -CFLAGS = -O2 -Wall -Wextra -Werror -mmcu=atmega328p +CFLAGS = -O2 -Wall -Wextra -mmcu=atmega328p --param=min-pagesize=0 OBJCOPY = avr-objcopy PORT ?= /dev/ttyACM0