1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #8934 from OTAkeys/pr/lfs_no_print

pkg/littlefs: disable error prints
This commit is contained in:
Kaspar Schleiser 2018-04-12 09:57:26 +02:00 committed by GitHub
commit c06f704a7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,4 +5,9 @@ CFLAGS += -Wno-unused-parameter -Wno-format
# used by MIPS
CFLAGS += -Wno-missing-field-initializers
# Disable debug printing
ifneq ($(DEVELHELP),1)
CFLAGS += -DLFS_NO_DEBUG -DLFS_NO_WARN -DLFS_NO_ERROR
endif
include $(RIOTBASE)/Makefile.base