From e7642cf753b67bcfee21983e2caa292c2722ba4c Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 14 Apr 2026 20:06:26 +0700 Subject: suppress null-dereference warnings in FreeRTOS builds --- hw/bsp/family_support.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/bsp/family_support.mk b/hw/bsp/family_support.mk index 69aa08922..6b08f6e88 100644 --- a/hw/bsp/family_support.mk +++ b/hw/bsp/family_support.mk @@ -170,6 +170,7 @@ ifeq ($(RTOS),freertos) # Suppress FreeRTOS source warnings CFLAGS += -Wno-error=cast-qual + CFLAGS += -Wno-error=null-dereference # FreeRTOS (lto + Os) linker issue LDFLAGS += -Wl,--undefined=vTaskSwitchContext -- cgit v1.3.1