From cc105aa9c9626acf4214fc0859a85b0845c9663b Mon Sep 17 00:00:00 2001 From: finga Date: Tue, 14 Sep 2021 00:27:09 +0200 Subject: [PATCH] Enable pedantic warnings Enable all the warnings demanded by strict ISO C. --- firmware/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/src/Makefile b/firmware/src/Makefile index 6dbd1c3..1be6326 100644 --- a/firmware/src/Makefile +++ b/firmware/src/Makefile @@ -17,7 +17,7 @@ OBJCOPY := avr-objcopy SIZE := avr-size AVRDUDE := avrdude -CFLAGS := -mmcu=$(MCU) -D F_CPU=$(SPEED) -Os -Wall -Werror -Wextra +CFLAGS := -mmcu=$(MCU) -D F_CPU=$(SPEED) -Os -Wall -Werror -Wextra -Wpedantic all: $(TARGET) $(EEP)