| 240 | } |
| 241 | |
| 242 | Result Xbox360WirelessController::SetLED(Xbox360LEDValue value) |
| 243 | { |
| 244 | uint8_t customLEDPacket[]{0x00, 0x00, 0x08, static_cast<uint8_t>(value | 0x40), 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; |
| 245 | return WriteToEndpoint(customLEDPacket, sizeof(customLEDPacket)); |
| 246 | } |
| 247 | |
| 248 | void Xbox360WirelessController::LoadConfig(const ControllerConfig *config) |
| 249 | { |
nothing calls this directly
no outgoing calls
no test coverage detected