Add flag to supress printf and delay warnings

This commit is contained in:
Jimmy 2020-12-26 00:57:38 +13:00
parent cf2c0d4f24
commit 9a7487104a
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ PORT=/dev/ttyUSB0
CC=avr-g++
OBJCOPY=avr-objcopy
CFLAGS=-Wall -g -mmcu=${MCU} -DF_CPU=${F_CPU} -I.
CFLAGS=-Wall -g -mmcu=${MCU} -DF_CPU=${F_CPU} -I. -Wno-format -Wno-cpp
TARGET=main
SRCS=src/*.cpp test/main.cpp lib/*/src/*.cpp