fix warnings cast function type for nrf, fix pico osal warning

add TODO for overflow in tusb_fifo.c
This commit is contained in:
hathach
2021-05-25 21:02:40 +07:00
parent ca8724ee08
commit 954056da0c
4 changed files with 13 additions and 2 deletions

View File

@@ -88,6 +88,7 @@ CFLAGS += \
-fno-strict-aliasing \
-Wdouble-promotion \
-Wstrict-prototypes \
-Wstrict-overflow \
-Wall \
-Wextra \
-Werror \
@@ -100,7 +101,8 @@ CFLAGS += \
-Wsign-compare \
-Wmissing-format-attribute \
-Wunreachable-code \
-Wcast-align
-Wcast-align \
-Wcast-function-type
# Debugging/Optimization
ifeq ($(DEBUG), 1)