demos/RT-TEENSY4_1: turn off unused-parameter warnings

This commit is contained in:
Michael Stapelberg 2021-03-26 22:29:05 +01:00
parent fa1ec8dd08
commit cd172cab25
1 changed files with 3 additions and 1 deletions

View File

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