You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
microwatt/include/liteuart_console.h

19 lines
237 B
C

#pragma once
#include <stdbool.h>
#ifdef __cplusplus
extern "C"
{
#endif
int usb_getchar(void);
bool usb_havechar(void);
int usb_putchar(int c);
int usb_puts(const char *str);
void usb_console_init(void);
#ifdef __cplusplus
}
#endif