Enable pedantic warnings

Enable all the warnings demanded by strict ISO C.
This commit is contained in:
finga 2021-09-14 00:27:09 +02:00
parent c53ccba034
commit cc105aa9c9

View file

@ -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)