aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Ptm/Ts/IMeasurementServer.cs
blob: 66ffd0a49ec336fed89d8745b7fb630060c14516 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             

                                            


                                         
                                                    
 
                                                         
 
                        










                                                                          
                        



                                                                         
                                                                          
 
                                                                  

                                      
     
 
using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Ptm.Ts.Types;

namespace Ryujinx.HLE.HOS.Services.Ptm.Ts
{
    [Service("ts")]
    class IMeasurementServer : IpcService
    {
        private const uint DefaultTemperature = 42u;

        public IMeasurementServer(ServiceCtx context) { }

        [CommandCmif(1)]
        // GetTemperature(Location location) -> u32
        public ResultCode GetTemperature(ServiceCtx context)
        {
            Location location = (Location)context.RequestData.ReadByte();

            Logger.Stub?.PrintStub(LogClass.ServicePtm, new { location });

            context.ResponseData.Write(DefaultTemperature);

            return ResultCode.Success;
        }

        [CommandCmif(3)]
        // GetTemperatureMilliC(Location location) -> u32
        public ResultCode GetTemperatureMilliC(ServiceCtx context)
        {
            Location location = (Location)context.RequestData.ReadByte();

            Logger.Stub?.PrintStub(LogClass.ServicePtm, new { location });

            context.ResponseData.Write(DefaultTemperature * 1000);

            return ResultCode.Success;
        }
    }
}