mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
541 B
Makefile
20 lines
541 B
Makefile
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
|
|
|
|
#ensure the rx buffer has some room even with large test patterns
|
|
CFLAGS += -DSTDIO_UART_RX_BUFSIZE=128
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Increase Stack size for AVR
|
|
ifneq (,$(filter avr8_common,$(USEMODULE)))
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE
|
|
endif
|