mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-04 21:05:06 +01:00
service: hid: Stub SetPalmaBoostMode
This commit is contained in:
parent
4da934579c
commit
cf95cfb056
@ -248,4 +248,8 @@ namespace skyline::service::hid {
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
Result IHidServer::SetPalmaBoostMode(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response) {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
@ -178,6 +178,12 @@ namespace skyline::service::hid {
|
||||
*/
|
||||
Result SendVibrationValues(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
/**
|
||||
* @brief Sets boost mode to a Palma device
|
||||
* @url https://switchbrew.org/wiki/HID_services#SetPalmaBoostMode
|
||||
*/
|
||||
Result SetPalmaBoostMode(type::KSession &session, ipc::IpcRequest &request, ipc::IpcResponse &response);
|
||||
|
||||
SERVICE_DECL(
|
||||
SFUNC(0x0, IHidServer, CreateAppletResource),
|
||||
SFUNC(0x1, IHidServer, ActivateDebugPad),
|
||||
@ -206,7 +212,8 @@ namespace skyline::service::hid {
|
||||
SFUNC(0xCB, IHidServer, CreateActiveVibrationDeviceList),
|
||||
SFUNC(0xC8, IHidServer, GetVibrationDeviceInfo),
|
||||
SFUNC(0xC9, IHidServer, SendVibrationValue),
|
||||
SFUNC(0xCE, IHidServer, SendVibrationValues)
|
||||
SFUNC(0xCE, IHidServer, SendVibrationValues),
|
||||
SFUNC(0x20D, IHidServer, SetPalmaBoostMode)
|
||||
)
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user