| 1068 | } |
| 1069 | |
| 1070 | void Xbox360Peripheral::SerialMessage(IOBufferMemoryDescriptor *data, size_t length) |
| 1071 | { |
| 1072 | if (serialHandler != NULL) |
| 1073 | { |
| 1074 | char *buffer = (char*)data->getBytesNoCopy(); |
| 1075 | if ((length == 5) && (buffer[0] == 0x00)) |
| 1076 | serialHandler->handleReport(data, kIOHIDReportTypeInput); |
| 1077 | } |
| 1078 | } |
nothing calls this directly
no test coverage detected