serial.h 191 B

123456789
  1. // SPDX-License-Identifier: BSD-2-Clause
  2. #pragma once
  3. int serial_console_getchar(void);
  4. int serial_console_tstc(void);
  5. void serial_console_putchar(char c);
  6. void serial_console_init(void);