|
|
@ -233,7 +233,7 @@ Hid::Hid(Core::System& system) : ServiceFramework("hid"), system(system) { |
|
|
{302, nullptr, "StopConsoleSixAxisSensor"}, |
|
|
{302, nullptr, "StopConsoleSixAxisSensor"}, |
|
|
{303, nullptr, "ActivateSevenSixAxisSensor"}, |
|
|
{303, nullptr, "ActivateSevenSixAxisSensor"}, |
|
|
{304, nullptr, "StartSevenSixAxisSensor"}, |
|
|
{304, nullptr, "StartSevenSixAxisSensor"}, |
|
|
{305, nullptr, "StopSevenSixAxisSensor"}, |
|
|
|
|
|
|
|
|
{305, &Hid::StopSevenSixAxisSensor, "StopSevenSixAxisSensor"}, |
|
|
{306, &Hid::InitializeSevenSixAxisSensor, "InitializeSevenSixAxisSensor"}, |
|
|
{306, &Hid::InitializeSevenSixAxisSensor, "InitializeSevenSixAxisSensor"}, |
|
|
{307, nullptr, "FinalizeSevenSixAxisSensor"}, |
|
|
{307, nullptr, "FinalizeSevenSixAxisSensor"}, |
|
|
{308, nullptr, "SetSevenSixAxisSensorFusionStrength"}, |
|
|
{308, nullptr, "SetSevenSixAxisSensorFusionStrength"}, |
|
|
@ -852,6 +852,17 @@ void Hid::SetPalmaBoostMode(Kernel::HLERequestContext& ctx) { |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void Hid::StopSevenSixAxisSensor(Kernel::HLERequestContext& ctx) { |
|
|
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
|
|
const auto applet_resource_user_id{rp.Pop<u64>()}; |
|
|
|
|
|
|
|
|
|
|
|
LOG_WARNING(Service_HID, "(STUBBED) called, applet_resource_user_id={}", |
|
|
|
|
|
applet_resource_user_id); |
|
|
|
|
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void Hid::InitializeSevenSixAxisSensor(Kernel::HLERequestContext& ctx) { |
|
|
void Hid::InitializeSevenSixAxisSensor(Kernel::HLERequestContext& ctx) { |
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
|
|
|
|
|
|
|