()
| 38 | const CDC_TX_ENDPOINT: u8 = 4; |
| 39 | |
| 40 | pub fn usb_serial_init() { |
| 41 | setup_cdc_descriptors(); |
| 42 | |
| 43 | // Hook in the various callbacks |
| 44 | usb_attach_setup_callback(usb_serial_configure); |
| 45 | |
| 46 | // Attach irq handler |
| 47 | usb_attach_irq_handler(handle_irq); |
| 48 | } |
| 49 | |
| 50 | fn usb_timer_oneshot() { |
| 51 | let timer_val = read_word(USB + 0x84) & 0xFFDFFF; |
nothing calls this directly
no test coverage detected