aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ptm/psm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/ptm/psm.cpp')
-rw-r--r--src/core/hle/service/ptm/psm.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm/psm.cpp b/src/core/hle/service/ptm/psm.cpp
index f6186b809..a8e3813c8 100644
--- a/src/core/hle/service/ptm/psm.cpp
+++ b/src/core/hle/service/ptm/psm.cpp
@@ -12,10 +12,12 @@
namespace Service::PSM {
+constexpr u32 BATTERY_FULLY_CHARGED = 100; // 100% Full
+
PSM::PSM() : ServiceFramework{"psm"} {
// clang-format off
static const FunctionInfo functions[] = {
- {0, nullptr, "GetBatteryChargePercentage"},
+ {0, &PSM::GetBatteryChargePercentage, "GetBatteryChargePercentage"},
{1, nullptr, "GetChargerType"},
{2, nullptr, "EnableBatteryCharging"},
{3, nullptr, "DisableBatteryCharging"},
@@ -41,6 +43,14 @@ PSM::PSM() : ServiceFramework{"psm"} {
PSM::~PSM() = default;
+void PSM::GetBatteryChargePercentage(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_PSM, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 3};
+ rb.Push(RESULT_SUCCESS);
+ rb.Push<u32>(BATTERY_FULLY_CHARGED);
+}
+
void InstallInterfaces(SM::ServiceManager& sm) {
std::make_shared<PSM>()->InstallAsService(sm);
}