1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples: tests: make use of DEVELHELP consistent

This commit is contained in:
Alexandre Abadie 2019-11-01 13:52:52 +01:00
parent 8c181d8ecd
commit d5da6a7ac3
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
8 changed files with 5 additions and 13 deletions

View File

@ -22,7 +22,7 @@ USEMODULE += fmt
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
DEVELHELP ?= 1
# For debugging and demonstration purposes, we limit the lifetime to 60s
CFLAGS += -DCORD_LT=60

View File

@ -21,7 +21,7 @@ USEMODULE += xtimer
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
DEVELHELP ?= 1
# For debugging and demonstration purposes, we limit the lifetime to the minimal
# allowed value of 60s (see draft-ietf-core-resource-directory-11, Table 2)

View File

@ -48,7 +48,7 @@ CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(3*THREAD_STACKSIZE_DEFAULT\)
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
DEVELHELP ?= 1
# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

View File

@ -40,7 +40,7 @@ CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(3*THREAD_STACKSIZE_DEFAULT\)
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
DEVELHELP ?= 1
# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

View File

@ -23,7 +23,7 @@ USEPKG += ndn-riot
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
DEVELHELP ?= 1
# Change this to 0 show compiler invocation lines by default:
QUIET ?= 1

View File

@ -2,6 +2,5 @@ include ../Makefile.tests_common
USEMODULE += lc709203f
USEMODULE += xtimer
CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include

View File

@ -7,11 +7,6 @@ include ../Makefile.tests_common
# be then accordingly extended.
BOARD_WHITELIST := samr21-xpro iotlab-m3
# Comment this out to disable code in RIOT that does safety checking
# which is not needed in a production environment but helps in the
# development process:
CFLAGS += -DDEVELHELP
# Modules to include:
USEMODULE += shell
USEMODULE += shell_commands

View File

@ -11,8 +11,6 @@ DISABLE_MODULE += auto_init
USEMODULE += od
USEMODULE += socket_zep
CFLAGS += -DDEVELHELP
TERMFLAGS ?= -z [::1]:17754
include $(RIOTBASE)/Makefile.include