| 380 | } |
| 381 | |
| 382 | bool IsStateOk() { |
| 383 | auto state = UsbState_Detached; |
| 384 | usbDsGetState(&state); |
| 385 | return state == UsbState_Configured; |
| 386 | } |
| 387 | |
| 388 | Result Read(void *buf, const size_t size) { |
| 389 | return TransferImpl(buf, size, g_EndpointOut); |
no outgoing calls
no test coverage detected