(packet: &UsbEndpointTransferDescriptor)
| 188 | } |
| 189 | } |
| 190 | fn tx_callback(packet: &UsbEndpointTransferDescriptor) { |
| 191 | if (packet.status & 0x80) != 0 { |
| 192 | usb_timer_oneshot(); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /// Write a single byte to the USB host. |
| 197 | /// |
nothing calls this directly
no test coverage detected