demos/RT-TEENSY4_1: turn off unused-parameter warnings
This commit is contained in:
parent
fa1ec8dd08
commit
cd172cab25
|
@ -185,7 +185,9 @@ AOPT =
|
|||
TOPT = -mthumb -DTHUMB
|
||||
|
||||
# Define C warning options here
|
||||
CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
|
||||
# The NXP SDK code produces plenty of unused-parameter warnings,
|
||||
# so turn these off for now:
|
||||
CWARN = -Wall -Wextra -Wundef -Wno-unused-parameter -Wstrict-prototypes
|
||||
|
||||
# Define C++ warning options here
|
||||
CPPWARN = -Wall -Wextra -Wundef
|
||||
|
|
Loading…
Reference in New Issue