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

sys/stdio: add stdin and stdio_uart_rx modules to Kconfig

This commit is contained in:
Leandro Lanzieri 2020-08-17 16:55:30 +02:00
parent fec7cd37e3
commit a66f7fd61f
No known key found for this signature in database
GPG Key ID: 13559905E2EBEAA5

View File

@ -5,7 +5,7 @@
# directory for more details.
#
menu "Standard Input/Ouput (STDIO)"
menu "Standard Input/Output (STDIO)"
depends on TEST_KCONFIG
choice
@ -27,4 +27,15 @@ config MODULE_STDIO_UART
endchoice
endmenu # Standard Input/Ouput (STDIO)
config MODULE_STDIN
bool "Standard Input"
config MODULE_STDIO_UART_RX
bool
depends on MODULE_STDIO_UART
select MODULE_ISRPIPE
default y if MODULE_STDIN
help
Reception when using UART-based STDIO needs to be enabled.
endmenu # Standard Input/Output (STDIO)