2023-11-15 04:34:27 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/hle/kernel/k_shared_memory.h"
|
|
|
|
#include "core/hle/service/ipc_helpers.h"
|
2024-01-05 03:37:43 +01:00
|
|
|
#include "hid_core/hid_core.h"
|
|
|
|
#include "hid_core/resource_manager.h"
|
2023-11-15 04:34:27 +01:00
|
|
|
|
2024-01-05 03:37:43 +01:00
|
|
|
#include "hid_core/resources/applet_resource.h"
|
|
|
|
#include "hid_core/resources/debug_pad/debug_pad.h"
|
|
|
|
#include "hid_core/resources/digitizer/digitizer.h"
|
|
|
|
#include "hid_core/resources/keyboard/keyboard.h"
|
|
|
|
#include "hid_core/resources/mouse/debug_mouse.h"
|
|
|
|
#include "hid_core/resources/mouse/mouse.h"
|
|
|
|
#include "hid_core/resources/npad/npad.h"
|
|
|
|
#include "hid_core/resources/palma/palma.h"
|
|
|
|
#include "hid_core/resources/shared_memory_format.h"
|
|
|
|
#include "hid_core/resources/six_axis/console_six_axis.h"
|
|
|
|
#include "hid_core/resources/six_axis/seven_six_axis.h"
|
|
|
|
#include "hid_core/resources/six_axis/six_axis.h"
|
|
|
|
#include "hid_core/resources/system_buttons/capture_button.h"
|
|
|
|
#include "hid_core/resources/system_buttons/home_button.h"
|
|
|
|
#include "hid_core/resources/system_buttons/sleep_button.h"
|
|
|
|
#include "hid_core/resources/touch_screen/gesture.h"
|
|
|
|
#include "hid_core/resources/touch_screen/touch_screen.h"
|
|
|
|
#include "hid_core/resources/unique_pad/unique_pad.h"
|
2023-11-15 04:34:27 +01:00
|
|
|
|
|
|
|
namespace Service::HID {
|
|
|
|
|
|
|
|
// Updating period for each HID device.
|
|
|
|
// Period time is obtained by measuring the number of samples in a second on HW using a homebrew
|
|
|
|
// Correct npad_update_ns is 4ms this is overclocked to lower input lag
|
|
|
|
constexpr auto npad_update_ns = std::chrono::nanoseconds{1 * 1000 * 1000}; // (1ms, 1000Hz)
|
|
|
|
constexpr auto default_update_ns = std::chrono::nanoseconds{4 * 1000 * 1000}; // (4ms, 1000Hz)
|
|
|
|
constexpr auto mouse_keyboard_update_ns = std::chrono::nanoseconds{8 * 1000 * 1000}; // (8ms, 125Hz)
|
|
|
|
constexpr auto motion_update_ns = std::chrono::nanoseconds{5 * 1000 * 1000}; // (5ms, 200Hz)
|
|
|
|
|
|
|
|
ResourceManager::ResourceManager(Core::System& system_)
|
2023-12-06 01:39:18 +01:00
|
|
|
: system{system_}, service_context{system_, "hid"} {
|
|
|
|
applet_resource = std::make_shared<AppletResource>(system);
|
|
|
|
}
|
2023-11-15 04:34:27 +01:00
|
|
|
|
|
|
|
ResourceManager::~ResourceManager() = default;
|
|
|
|
|
|
|
|
void ResourceManager::Initialize() {
|
|
|
|
if (is_initialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-14 04:39:38 +01:00
|
|
|
system.HIDCore().ReloadInputDevices();
|
2023-11-17 18:46:26 +01:00
|
|
|
|
2023-12-31 07:42:23 +01:00
|
|
|
InitializeHidCommonSampler();
|
|
|
|
InitializeTouchScreenSampler();
|
|
|
|
InitializeConsoleSixAxisSampler();
|
|
|
|
InitializeAHidSampler();
|
2023-11-17 18:46:26 +01:00
|
|
|
|
2023-12-31 07:42:23 +01:00
|
|
|
is_initialized = true;
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
2023-12-06 01:39:18 +01:00
|
|
|
|
|
|
|
std::shared_ptr<AppletResource> ResourceManager::GetAppletResource() const {
|
|
|
|
return applet_resource;
|
|
|
|
}
|
|
|
|
|
2023-11-17 18:46:26 +01:00
|
|
|
std::shared_ptr<CaptureButton> ResourceManager::GetCaptureButton() const {
|
|
|
|
return capture_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<ConsoleSixAxis> ResourceManager::GetConsoleSixAxis() const {
|
|
|
|
return console_six_axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<DebugMouse> ResourceManager::GetDebugMouse() const {
|
|
|
|
return debug_mouse;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<DebugPad> ResourceManager::GetDebugPad() const {
|
|
|
|
return debug_pad;
|
|
|
|
}
|
|
|
|
|
2023-12-14 04:39:38 +01:00
|
|
|
std::shared_ptr<Digitizer> ResourceManager::GetDigitizer() const {
|
|
|
|
return digitizer;
|
|
|
|
}
|
|
|
|
|
2023-11-17 18:46:26 +01:00
|
|
|
std::shared_ptr<Gesture> ResourceManager::GetGesture() const {
|
|
|
|
return gesture;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<HomeButton> ResourceManager::GetHomeButton() const {
|
|
|
|
return home_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Keyboard> ResourceManager::GetKeyboard() const {
|
|
|
|
return keyboard;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Mouse> ResourceManager::GetMouse() const {
|
|
|
|
return mouse;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<NPad> ResourceManager::GetNpad() const {
|
|
|
|
return npad;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Palma> ResourceManager::GetPalma() const {
|
|
|
|
return palma;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<SevenSixAxis> ResourceManager::GetSevenSixAxis() const {
|
|
|
|
return seven_six_axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<SixAxis> ResourceManager::GetSixAxis() const {
|
|
|
|
return six_axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<SleepButton> ResourceManager::GetSleepButton() const {
|
|
|
|
return sleep_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<TouchScreen> ResourceManager::GetTouchScreen() const {
|
|
|
|
return touch_screen;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<UniquePad> ResourceManager::GetUniquePad() const {
|
|
|
|
return unique_pad;
|
|
|
|
}
|
2023-11-15 04:34:27 +01:00
|
|
|
|
2023-12-06 01:39:18 +01:00
|
|
|
Result ResourceManager::CreateAppletResource(u64 aruid) {
|
2024-01-01 22:23:56 +01:00
|
|
|
if (aruid == SystemAruid) {
|
2023-12-10 21:53:19 +01:00
|
|
|
const auto result = RegisterCoreAppletResource();
|
|
|
|
if (result.IsError()) {
|
|
|
|
return result;
|
|
|
|
}
|
2024-01-01 22:23:56 +01:00
|
|
|
return GetNpad()->ActivateNpadResource();
|
2023-12-10 21:53:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const auto result = CreateAppletResourceImpl(aruid);
|
|
|
|
if (result.IsError()) {
|
|
|
|
return result;
|
|
|
|
}
|
2023-12-31 07:42:23 +01:00
|
|
|
|
|
|
|
// Homebrew doesn't try to activate some controllers, so we activate them by default
|
|
|
|
npad->Activate();
|
|
|
|
six_axis->Activate();
|
|
|
|
touch_screen->Activate();
|
|
|
|
|
2024-01-01 22:23:56 +01:00
|
|
|
return GetNpad()->ActivateNpadResource(aruid);
|
2023-12-10 21:53:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ResourceManager::CreateAppletResourceImpl(u64 aruid) {
|
2023-12-06 01:39:18 +01:00
|
|
|
std::scoped_lock lock{shared_mutex};
|
2023-12-31 07:42:23 +01:00
|
|
|
return applet_resource->CreateAppletResource(aruid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::InitializeHidCommonSampler() {
|
|
|
|
debug_pad = std::make_shared<DebugPad>(system.HIDCore());
|
|
|
|
mouse = std::make_shared<Mouse>(system.HIDCore());
|
|
|
|
debug_mouse = std::make_shared<DebugMouse>(system.HIDCore());
|
|
|
|
keyboard = std::make_shared<Keyboard>(system.HIDCore());
|
|
|
|
unique_pad = std::make_shared<UniquePad>(system.HIDCore());
|
|
|
|
npad = std::make_shared<NPad>(system.HIDCore(), service_context);
|
|
|
|
gesture = std::make_shared<Gesture>(system.HIDCore());
|
|
|
|
home_button = std::make_shared<HomeButton>(system.HIDCore());
|
|
|
|
sleep_button = std::make_shared<SleepButton>(system.HIDCore());
|
|
|
|
capture_button = std::make_shared<CaptureButton>(system.HIDCore());
|
|
|
|
digitizer = std::make_shared<Digitizer>(system.HIDCore());
|
|
|
|
|
|
|
|
palma = std::make_shared<Palma>(system.HIDCore(), service_context);
|
|
|
|
six_axis = std::make_shared<SixAxis>(system.HIDCore(), npad);
|
|
|
|
|
2024-01-02 04:33:07 +01:00
|
|
|
debug_pad->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
digitizer->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
keyboard->SetAppletResource(applet_resource, &shared_mutex);
|
2024-01-01 22:23:56 +01:00
|
|
|
npad->SetNpadExternals(applet_resource, &shared_mutex);
|
2024-01-02 04:33:07 +01:00
|
|
|
six_axis->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
mouse->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
debug_mouse->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
home_button->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
sleep_button->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
capture_button->SetAppletResource(applet_resource, &shared_mutex);
|
2023-12-31 07:42:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::InitializeTouchScreenSampler() {
|
|
|
|
gesture = std::make_shared<Gesture>(system.HIDCore());
|
|
|
|
touch_screen = std::make_shared<TouchScreen>(system.HIDCore());
|
|
|
|
|
2024-01-02 04:33:07 +01:00
|
|
|
touch_screen->SetAppletResource(applet_resource, &shared_mutex);
|
|
|
|
gesture->SetAppletResource(applet_resource, &shared_mutex);
|
2023-12-31 07:42:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::InitializeConsoleSixAxisSampler() {
|
|
|
|
console_six_axis = std::make_shared<ConsoleSixAxis>(system.HIDCore());
|
|
|
|
seven_six_axis = std::make_shared<SevenSixAxis>(system);
|
|
|
|
|
2024-01-02 04:33:07 +01:00
|
|
|
console_six_axis->SetAppletResource(applet_resource, &shared_mutex);
|
2023-12-31 07:42:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::InitializeAHidSampler() {
|
|
|
|
// TODO
|
2023-12-06 01:39:18 +01:00
|
|
|
}
|
|
|
|
|
2023-12-10 21:53:19 +01:00
|
|
|
Result ResourceManager::RegisterCoreAppletResource() {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
return applet_resource->RegisterCoreAppletResource();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result ResourceManager::UnregisterCoreAppletResource() {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
return applet_resource->UnregisterCoreAppletResource();
|
|
|
|
}
|
|
|
|
|
2023-12-06 01:39:18 +01:00
|
|
|
Result ResourceManager::RegisterAppletResourceUserId(u64 aruid, bool bool_value) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
2024-01-01 22:23:56 +01:00
|
|
|
auto result = applet_resource->RegisterAppletResourceUserId(aruid, bool_value);
|
|
|
|
if (result.IsSuccess()) {
|
|
|
|
result = npad->RegisterAppletResourceUserId(aruid);
|
|
|
|
}
|
|
|
|
return result;
|
2023-12-06 01:39:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::UnregisterAppletResourceUserId(u64 aruid) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
applet_resource->UnregisterAppletResourceUserId(aruid);
|
2024-01-06 21:09:13 +01:00
|
|
|
npad->UnregisterAppletResourceUserId(aruid);
|
2023-12-06 01:39:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result ResourceManager::GetSharedMemoryHandle(Kernel::KSharedMemory** out_handle, u64 aruid) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
return applet_resource->GetSharedMemoryHandle(out_handle, aruid);
|
|
|
|
}
|
|
|
|
|
2023-12-10 21:53:19 +01:00
|
|
|
void ResourceManager::FreeAppletResourceId(u64 aruid) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
applet_resource->FreeAppletResourceId(aruid);
|
|
|
|
}
|
|
|
|
|
2023-12-06 01:39:18 +01:00
|
|
|
void ResourceManager::EnableInput(u64 aruid, bool is_enabled) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
applet_resource->EnableInput(aruid, is_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::EnableSixAxisSensor(u64 aruid, bool is_enabled) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
applet_resource->EnableSixAxisSensor(aruid, is_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::EnablePadInput(u64 aruid, bool is_enabled) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
applet_resource->EnablePadInput(aruid, is_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResourceManager::EnableTouchScreen(u64 aruid, bool is_enabled) {
|
|
|
|
std::scoped_lock lock{shared_mutex};
|
|
|
|
applet_resource->EnableTouchScreen(aruid, is_enabled);
|
|
|
|
}
|
|
|
|
|
2023-12-23 19:58:09 +01:00
|
|
|
void ResourceManager::UpdateControllers(std::chrono::nanoseconds ns_late) {
|
2023-11-15 04:34:27 +01:00
|
|
|
auto& core_timing = system.CoreTiming();
|
2023-11-17 18:46:26 +01:00
|
|
|
debug_pad->OnUpdate(core_timing);
|
2023-12-14 16:31:38 +01:00
|
|
|
digitizer->OnUpdate(core_timing);
|
2023-11-17 18:46:26 +01:00
|
|
|
unique_pad->OnUpdate(core_timing);
|
|
|
|
gesture->OnUpdate(core_timing);
|
|
|
|
touch_screen->OnUpdate(core_timing);
|
|
|
|
palma->OnUpdate(core_timing);
|
|
|
|
home_button->OnUpdate(core_timing);
|
|
|
|
sleep_button->OnUpdate(core_timing);
|
|
|
|
capture_button->OnUpdate(core_timing);
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
|
|
|
|
2023-12-23 19:58:09 +01:00
|
|
|
void ResourceManager::UpdateNpad(std::chrono::nanoseconds ns_late) {
|
2023-11-15 04:34:27 +01:00
|
|
|
auto& core_timing = system.CoreTiming();
|
2023-11-17 18:46:26 +01:00
|
|
|
npad->OnUpdate(core_timing);
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
|
|
|
|
2023-12-23 19:58:09 +01:00
|
|
|
void ResourceManager::UpdateMouseKeyboard(std::chrono::nanoseconds ns_late) {
|
2023-11-15 04:34:27 +01:00
|
|
|
auto& core_timing = system.CoreTiming();
|
2023-11-17 18:46:26 +01:00
|
|
|
mouse->OnUpdate(core_timing);
|
|
|
|
debug_mouse->OnUpdate(core_timing);
|
|
|
|
keyboard->OnUpdate(core_timing);
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
|
|
|
|
2023-12-23 19:58:09 +01:00
|
|
|
void ResourceManager::UpdateMotion(std::chrono::nanoseconds ns_late) {
|
2023-11-15 04:34:27 +01:00
|
|
|
auto& core_timing = system.CoreTiming();
|
2023-11-17 18:46:26 +01:00
|
|
|
six_axis->OnUpdate(core_timing);
|
|
|
|
seven_six_axis->OnUpdate(core_timing);
|
|
|
|
console_six_axis->OnUpdate(core_timing);
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
|
|
|
|
2023-12-10 21:53:19 +01:00
|
|
|
IAppletResource::IAppletResource(Core::System& system_, std::shared_ptr<ResourceManager> resource,
|
|
|
|
u64 applet_resource_user_id)
|
|
|
|
: ServiceFramework{system_, "IAppletResource"}, aruid{applet_resource_user_id},
|
|
|
|
resource_manager{resource} {
|
2023-11-15 04:34:27 +01:00
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &IAppletResource::GetSharedMemoryHandle, "GetSharedMemoryHandle"},
|
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
|
|
|
|
// Register update callbacks
|
|
|
|
npad_update_event = Core::Timing::CreateEvent(
|
|
|
|
"HID::UpdatePadCallback",
|
2023-12-23 19:58:09 +01:00
|
|
|
[this, resource](
|
|
|
|
s64 time, std::chrono::nanoseconds ns_late) -> std::optional<std::chrono::nanoseconds> {
|
2023-11-15 04:34:27 +01:00
|
|
|
const auto guard = LockService();
|
2023-12-23 19:58:09 +01:00
|
|
|
resource->UpdateNpad(ns_late);
|
2023-11-15 04:34:27 +01:00
|
|
|
return std::nullopt;
|
|
|
|
});
|
|
|
|
default_update_event = Core::Timing::CreateEvent(
|
|
|
|
"HID::UpdateDefaultCallback",
|
2023-12-23 19:58:09 +01:00
|
|
|
[this, resource](
|
|
|
|
s64 time, std::chrono::nanoseconds ns_late) -> std::optional<std::chrono::nanoseconds> {
|
2023-11-15 04:34:27 +01:00
|
|
|
const auto guard = LockService();
|
2023-12-23 19:58:09 +01:00
|
|
|
resource->UpdateControllers(ns_late);
|
2023-11-15 04:34:27 +01:00
|
|
|
return std::nullopt;
|
|
|
|
});
|
|
|
|
mouse_keyboard_update_event = Core::Timing::CreateEvent(
|
|
|
|
"HID::UpdateMouseKeyboardCallback",
|
2023-12-23 19:58:09 +01:00
|
|
|
[this, resource](
|
|
|
|
s64 time, std::chrono::nanoseconds ns_late) -> std::optional<std::chrono::nanoseconds> {
|
2023-11-15 04:34:27 +01:00
|
|
|
const auto guard = LockService();
|
2023-12-23 19:58:09 +01:00
|
|
|
resource->UpdateMouseKeyboard(ns_late);
|
2023-11-15 04:34:27 +01:00
|
|
|
return std::nullopt;
|
|
|
|
});
|
|
|
|
motion_update_event = Core::Timing::CreateEvent(
|
|
|
|
"HID::UpdateMotionCallback",
|
2023-12-23 19:58:09 +01:00
|
|
|
[this, resource](
|
|
|
|
s64 time, std::chrono::nanoseconds ns_late) -> std::optional<std::chrono::nanoseconds> {
|
2023-11-15 04:34:27 +01:00
|
|
|
const auto guard = LockService();
|
2023-12-23 19:58:09 +01:00
|
|
|
resource->UpdateMotion(ns_late);
|
2023-11-15 04:34:27 +01:00
|
|
|
return std::nullopt;
|
|
|
|
});
|
|
|
|
|
|
|
|
system.CoreTiming().ScheduleLoopingEvent(npad_update_ns, npad_update_ns, npad_update_event);
|
|
|
|
system.CoreTiming().ScheduleLoopingEvent(default_update_ns, default_update_ns,
|
|
|
|
default_update_event);
|
|
|
|
system.CoreTiming().ScheduleLoopingEvent(mouse_keyboard_update_ns, mouse_keyboard_update_ns,
|
|
|
|
mouse_keyboard_update_event);
|
|
|
|
system.CoreTiming().ScheduleLoopingEvent(motion_update_ns, motion_update_ns,
|
|
|
|
motion_update_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
IAppletResource::~IAppletResource() {
|
2023-12-23 19:58:09 +01:00
|
|
|
system.CoreTiming().UnscheduleEvent(npad_update_event);
|
|
|
|
system.CoreTiming().UnscheduleEvent(default_update_event);
|
|
|
|
system.CoreTiming().UnscheduleEvent(mouse_keyboard_update_event);
|
|
|
|
system.CoreTiming().UnscheduleEvent(motion_update_event);
|
2023-12-10 21:53:19 +01:00
|
|
|
resource_manager->FreeAppletResourceId(aruid);
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void IAppletResource::GetSharedMemoryHandle(HLERequestContext& ctx) {
|
2023-12-06 01:39:18 +01:00
|
|
|
Kernel::KSharedMemory* handle;
|
2023-12-10 21:53:19 +01:00
|
|
|
const auto result = resource_manager->GetSharedMemoryHandle(&handle, aruid);
|
|
|
|
|
|
|
|
LOG_DEBUG(Service_HID, "called, applet_resource_user_id={}, result=0x{:X}", aruid, result.raw);
|
2023-12-06 01:39:18 +01:00
|
|
|
|
2023-11-15 04:34:27 +01:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 1};
|
2023-12-06 01:39:18 +01:00
|
|
|
rb.Push(result);
|
|
|
|
rb.PushCopyObjects(handle);
|
2023-11-15 04:34:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::HID
|