/* * Copyright (C) 2021 ML!PA Consulting GmbH * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @defgroup net_telnet_stdio STDIO via telnet * @ingroup sys_stdio * @{ * * @file * @brief STDIO over Telnet implementation * * This file implements STDIO via a Telnet server with fallback UART output * * @author Benjamin Valentin * * @} */ #include #include "board.h" #include "kernel_defines.h" #include "net/telnet.h" #include "stdio_base.h" STDIO_PROVIDER(STDIO_TELNET, NULL, telnet_server_disconnect, telnet_server_write)