diff options
| author | Liam <byteslice@airmail.cc> | 2022-10-11 18:15:30 -0400 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2022-10-11 18:15:30 -0400 |
| commit | 6bcd676b610773727f446a8c81bcca1c64a95b10 (patch) | |
| tree | cbf54dcfae491b57034fcc6841f6eaa5f3ab29c2 /src/core/hle/service/ptm/ts.cpp | |
| parent | 133a68ee9b420d30a58fe7ddd8c03065324a4d70 (diff) | |
general: preliminary support for hbl
Diffstat (limited to 'src/core/hle/service/ptm/ts.cpp')
| -rw-r--r-- | src/core/hle/service/ptm/ts.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/core/hle/service/ptm/ts.cpp b/src/core/hle/service/ptm/ts.cpp index 65c3f135f..b1a0a5544 100644 --- a/src/core/hle/service/ptm/ts.cpp +++ b/src/core/hle/service/ptm/ts.cpp @@ -15,7 +15,7 @@ TS::TS(Core::System& system_) : ServiceFramework{system_, "ts"} { {0, nullptr, "GetTemperatureRange"}, {1, &TS::GetTemperature, "GetTemperature"}, {2, nullptr, "SetMeasurementMode"}, - {3, nullptr, "GetTemperatureMilliC"}, + {3, &TS::GetTemperatureMilliC, "GetTemperatureMilliC"}, {4, nullptr, "OpenSession"}, }; // clang-format on @@ -29,8 +29,6 @@ void TS::GetTemperature(Kernel::HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto location{rp.PopEnum<Location>()}; - LOG_WARNING(Service_HID, "(STUBBED) called. location={}", location); - const s32 temperature = location == Location::Internal ? 35 : 20; IPC::ResponseBuilder rb{ctx, 3}; @@ -38,4 +36,15 @@ void TS::GetTemperature(Kernel::HLERequestContext& ctx) { rb.Push(temperature); } +void TS::GetTemperatureMilliC(Kernel::HLERequestContext& ctx) { + IPC::RequestParser rp{ctx}; + const auto location{rp.PopEnum<Location>()}; + + const s32 temperature = location == Location::Internal ? 35000 : 20000; + + IPC::ResponseBuilder rb{ctx, 3}; + rb.Push(ResultSuccess); + rb.Push(temperature); +} + } // namespace Service::PTM |
