1 2 3 4 5 6 7 8 9 10
#ifndef _USB_KEYBOARD_H_ #define _USB_KEYBOARD_H_ void usb_keyboard_init(void); void usb_keyboard_task(void); bool usb_keyboard_send_char(uint32_t ch); bool usb_keyboard_is_flushed(void); #endif /* _USB_KEYBOARD_H_ */