mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-31 16:09:03 -05:00 
			
		
		
		
	Update hid.cpp
This commit is contained in:
		| @@ -216,8 +216,8 @@ Hid::Hid() : ServiceFramework("hid") { | ||||
|         {201, &Hid::SendVibrationValue, "SendVibrationValue"}, | ||||
|         {202, &Hid::GetActualVibrationValue, "GetActualVibrationValue"}, | ||||
|         {203, &Hid::CreateActiveVibrationDeviceList, "CreateActiveVibrationDeviceList"}, | ||||
|         {204, nullptr, "PermitVibration"}, | ||||
|         {205, nullptr, "IsVibrationPermitted"}, | ||||
|         {204, &Hid::PermitVibration, "PermitVibration"}, | ||||
|         {205, &Hid::IsVibrationPermitted, "IsVibrationPermitted"}, | ||||
|         {206, &Hid::SendVibrationValues, "SendVibrationValues"}, | ||||
|         {207, nullptr, "SendVibrationGcErmCommand"}, | ||||
|         {208, nullptr, "GetActualVibrationGcErmCommand"}, | ||||
| @@ -679,6 +679,27 @@ void Hid::CreateActiveVibrationDeviceList(Kernel::HLERequestContext& ctx) { | ||||
|     rb.PushIpcInterface<IActiveVibrationDeviceList>(); | ||||
| } | ||||
|  | ||||
| void Hid::PermitVibration(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const auto can_vibrate{rp.Pop<bool>()}; | ||||
|     applet_resource->GetController<Controller_NPad>(HidController::NPad) | ||||
|         .SetVibrationEnabled(can_vibrate); | ||||
|  | ||||
|     LOG_DEBUG(Service_HID, "called, can_vibrate={}", can_vibrate); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
| } | ||||
|  | ||||
| void Hid::IsVibrationPermitted(Kernel::HLERequestContext& ctx) { | ||||
|     LOG_DEBUG(Service_HID, "called"); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 3}; | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(applet_resource->GetController<Controller_NPad>(HidController::NPad) | ||||
|         .IsVibrationEnabled()); | ||||
| } | ||||
|  | ||||
| void Hid::ActivateConsoleSixAxisSensor(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     const auto applet_resource_user_id{rp.Pop<u64>()}; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Morph1984
					Morph1984