From e21f1a979afe825a3f4499762fad494796c84c56 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Sun, 20 Aug 2023 20:46:01 -0400 Subject: [PATCH] Fix warning about array subscript [0] outside array bounds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 78ea4e3..c4efc61 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=avr-gcc -CFLAGS=-std=gnuc17 -c -g -Os -Wall -mmcu=attiny3216 +CFLAGS=-std=gnu17 --param=min-pagesize=0 -c -g -Os -Wall -mmcu=attiny3216 CFLAGS+=-fno-exceptions -ffunction-sections -fdata-sections -fshort-enums DEFS=-DF_CPU=16000000L LFLAGS=-mmcu=attiny3216 -MMD