Remove debugging console output from the makefile

This commit is contained in:
Michal Podhradsky
2017-02-10 17:33:19 -08:00
parent 03a0d63822
commit 316c45b501
-2
View File
@@ -39,7 +39,6 @@ Q=@
RTOS_DEBUG ?= 0
ifeq (,$(findstring $(RTOS_DEBUG),0 FALSE))
$(info DEBUGGING ON)
$(TARGET).CFLAGS += \
-DCH_DBG_STATISTICS=TRUE \
-DCH_DBG_SYSTEM_STATE_CHECK=TRUE \
@@ -50,7 +49,6 @@ $(TARGET).CFLAGS += \
-DCH_DBG_FILL_THREADS=TRUE \
-DCH_DBG_THREADS_PROFILING=TRUE
else
$(info DEBUGGING OFF)
$(TARGET).CFLAGS += -DCH_DBG_THREADS_PROFILING=TRUE
endif