| 26 | #if __CONSOLE_USB_ENABLE__ |
| 27 | static inline void __usbdebug_init(void) { usbdebug_init(); } |
| 28 | static inline void __usb_tx_byte(u8 data) |
| 29 | { |
| 30 | usb_tx_byte(USB_PIPE_FOR_CONSOLE, data); |
| 31 | } |
| 32 | static inline void __usb_tx_flush(void) { usb_tx_flush(USB_PIPE_FOR_CONSOLE); } |
| 33 | #else |
| 34 | static inline void __usbdebug_init(void) {} |
no test coverage detected