mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 04:43:10 +00:00
btdrv-mitm: add case for handling Set MCU State subcommand
This commit is contained in:
parent
990f704480
commit
26c3f971ed
1 changed files with 13 additions and 0 deletions
|
@ -232,6 +232,19 @@ namespace ams::mitm::btdrv {
|
|||
}
|
||||
break;
|
||||
|
||||
case bluetooth::SubCmd_SetMcuState:
|
||||
{
|
||||
//BTDRV_LOG_DATA_MSG((void *)requestData, requestData->length+2, "Set MCU State");
|
||||
|
||||
s64 timer = os::ConvertToTimeSpan(os::GetSystemTick()).GetMilliSeconds();
|
||||
u8 reportData[] = {0x31, 0x00, 0x21, timer & 0xff, 0x80, 0x00, 0x00, 0x00, 0x0b, 0xb8, 0x78, 0xd9, 0xd7, 0x81, 0x00,
|
||||
0x80, subCmdId};
|
||||
|
||||
auto responseData = reinterpret_cast<bluetooth::HidData *>(reportData);
|
||||
bluetooth::hid::report::WriteFakeHidData(&address, responseData);
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
case bluetooth::SubCmd_SetPlayerLeds:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue