| 219 | } |
| 220 | |
| 221 | Result Dualshock3Controller::SendCommand(IUSBInterface *interface, Dualshock3FeatureValue feature, const void *buffer, uint16_t size) |
| 222 | { |
| 223 | return interface->ControlTransfer(0x21, 0x09, static_cast<uint16_t>(feature), 0, size, buffer); |
| 224 | } |
| 225 | |
| 226 | Result Dualshock3Controller::SetLED(Dualshock3LEDValue value) |
| 227 | { |
nothing calls this directly
no test coverage detected