| 31 | (usb.regs.hcor.usbsts & usb.regs.hcor.usbintr ? ISR_HOST : 0) ) & ~usb.regs.imr); |
| 32 | } |
| 33 | void usb_host_int(uint8_t which) { |
| 34 | usb.regs.hcor.usbsts |= which & 0x3F; |
| 35 | usb_update(); |
| 36 | } |
| 37 | void usb_otg_int(uint16_t which) { |
| 38 | usb.regs.otgisr |= which & OTGISR_MASK; |
| 39 | usb_update(); |
nothing calls this directly
no test coverage detected