mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 09:12:39 +00:00
10 lines
191 B
C
10 lines
191 B
C
|
// SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
int serial_console_getchar(void);
|
||
|
int serial_console_tstc(void);
|
||
|
void serial_console_putchar(char c);
|
||
|
void serial_console_init(void);
|
||
|
|