2019-09-12 15:07:06 +02:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
# This application uses getchar and thus expects input from stdio
|
|
|
|
USEMODULE += stdin
|
|
|
|
USEMODULE += hashes
|
|
|
|
USEMODULE += base64
|
|
|
|
|
|
|
|
# Use a terminal that does not introduce extra characters into the stream.
|
|
|
|
RIOT_TERMINAL ?= socat
|
|
|
|
|
2022-04-12 16:05:32 +02:00
|
|
|
#ensure the rx buffer has some room even with large test patterns
|
|
|
|
CFLAGS += -DSTDIO_UART_RX_BUFSIZE=128
|
|
|
|
|
2019-09-12 15:07:06 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
2022-03-22 14:07:43 +01:00
|
|
|
|
|
|
|
# Increase Stack size for AVR
|
|
|
|
ifneq (,$(filter avr8_common,$(USEMODULE)))
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE
|
|
|
|
endif
|