Add flag to supress printf and delay warnings
This commit is contained in:
parent
cf2c0d4f24
commit
9a7487104a
2
makefile
2
makefile
|
@ -7,7 +7,7 @@ PORT=/dev/ttyUSB0
|
||||||
|
|
||||||
CC=avr-g++
|
CC=avr-g++
|
||||||
OBJCOPY=avr-objcopy
|
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
|
TARGET=main
|
||||||
SRCS=src/*.cpp test/main.cpp lib/*/src/*.cpp
|
SRCS=src/*.cpp test/main.cpp lib/*/src/*.cpp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue