psm: Mark as debug instead of warning
No point to emulate battery life. However options are broken out if we ever want to add a setting for it
This commit is contained in:
		
							parent
							
								
									8e64fb3225
								
							
						
					
					
						commit
						973c40b63e
					
				@ -12,9 +12,6 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
namespace Service::PSM {
 | 
					namespace Service::PSM {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
constexpr u32 BATTERY_FULLY_CHARGED = 100;    // 100% Full
 | 
					 | 
				
			||||||
constexpr u32 BATTERY_CURRENTLY_CHARGING = 1; // Plugged into an official dock
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
class PSM final : public ServiceFramework<PSM> {
 | 
					class PSM final : public ServiceFramework<PSM> {
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    explicit PSM() : ServiceFramework{"psm"} {
 | 
					    explicit PSM() : ServiceFramework{"psm"} {
 | 
				
			||||||
@ -48,20 +45,30 @@ public:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
private:
 | 
					private:
 | 
				
			||||||
    void GetBatteryChargePercentage(Kernel::HLERequestContext& ctx) {
 | 
					    void GetBatteryChargePercentage(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
        LOG_WARNING(Service_PSM, "(STUBBED) called");
 | 
					        LOG_DEBUG(Service_PSM, "called");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        IPC::ResponseBuilder rb{ctx, 3};
 | 
					        IPC::ResponseBuilder rb{ctx, 3};
 | 
				
			||||||
        rb.Push(RESULT_SUCCESS);
 | 
					        rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
        rb.Push<u32>(BATTERY_FULLY_CHARGED);
 | 
					        rb.Push<u32>(battery_charge_percentage);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    void GetChargerType(Kernel::HLERequestContext& ctx) {
 | 
					    void GetChargerType(Kernel::HLERequestContext& ctx) {
 | 
				
			||||||
        LOG_WARNING(Service_PSM, "(STUBBED) called");
 | 
					        LOG_DEBUG(Service_PSM, "called");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        IPC::ResponseBuilder rb{ctx, 3};
 | 
					        IPC::ResponseBuilder rb{ctx, 3};
 | 
				
			||||||
        rb.Push(RESULT_SUCCESS);
 | 
					        rb.Push(RESULT_SUCCESS);
 | 
				
			||||||
        rb.Push<u32>(BATTERY_CURRENTLY_CHARGING);
 | 
					        rb.PushEnum(charger_type);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    enum class ChargerType : u32 {
 | 
				
			||||||
 | 
					        Unplugged = 0,
 | 
				
			||||||
 | 
					        RegularCharger = 1,
 | 
				
			||||||
 | 
					        LowPowerCharger = 2,
 | 
				
			||||||
 | 
					        Unknown = 3,
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    u32 battery_charge_percentage{100}; // 100%
 | 
				
			||||||
 | 
					    ChargerType charger_type{ChargerType::RegularCharger};
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void InstallInterfaces(SM::ServiceManager& sm) {
 | 
					void InstallInterfaces(SM::ServiceManager& sm) {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user