2023-05-10 10:36:12 +02:00
|
|
|
include ../Makefile.sys_common
|
2017-11-28 11:53:00 +01:00
|
|
|
|
2019-05-28 15:27:08 +02:00
|
|
|
# Default stack with printf + the tests buffer uint32_t[32]/uint8_t[256]
|
|
|
|
MAIN_THREAD_SIZE = THREAD_STACKSIZE_DEFAULT+THREAD_EXTRA_STACKSIZE_PRINTF+256
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\($(MAIN_THREAD_SIZE)\)
|
|
|
|
|
2017-11-28 11:53:00 +01:00
|
|
|
# override PRNG if desired (see sys/random for alternatives)
|
|
|
|
# USEMODULE += prng_minstd
|
|
|
|
|
|
|
|
USEMODULE += fmt
|
|
|
|
USEMODULE += random
|
2022-08-16 16:35:20 +02:00
|
|
|
USEMODULE += shell_cmd_random
|
2017-11-28 11:53:00 +01:00
|
|
|
USEMODULE += xtimer
|
|
|
|
|
|
|
|
FEATURES_OPTIONAL += periph_hwrng
|
|
|
|
|
2018-04-04 15:20:51 +02:00
|
|
|
TEST_ON_CI_WHITELIST += native
|
|
|
|
|
2017-11-28 11:53:00 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|