commit d4d4114b316ff262024119925577915e4b5d75d9 parent 0167a8d66544705eb256a59ea98e8b23f339da60 Author: Joseph Bryant <jbryant0653@floridapoly.edu> Date: Wed, 17 Apr 2024 14:26:45 -0400 Fixes bug issue with &= for gcc Diffstat:
| M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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