2020-04-27 18:44:29 -07:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Ptm.Ts.Types;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ptm.Ts
|
2019-09-18 17:45:11 -07:00
|
|
|
|
{
|
|
|
|
|
[Service("ts")]
|
|
|
|
|
class IMeasurementServer : IpcService
|
|
|
|
|
{
|
2020-04-27 18:44:29 -07:00
|
|
|
|
private const uint DefaultTemperature = 42000u;
|
|
|
|
|
|
2019-09-18 17:45:11 -07:00
|
|
|
|
public IMeasurementServer(ServiceCtx context) { }
|
2020-04-27 18:44:29 -07:00
|
|
|
|
|
2021-04-13 15:01:24 -07:00
|
|
|
|
[CommandHipc(3)]
|
2020-04-27 18:44:29 -07:00
|
|
|
|
// GetTemperatureMilliC(Location location) -> u32
|
|
|
|
|
public ResultCode GetTemperatureMilliC(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
Location location = (Location)context.RequestData.ReadByte();
|
|
|
|
|
|
2020-08-03 16:32:53 -07:00
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServicePtm, new { location });
|
2020-04-27 18:44:29 -07:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(DefaultTemperature);
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
2019-09-18 17:45:11 -07:00
|
|
|
|
}
|
|
|
|
|
}
|