blob: b843bcd64ae47e5b83e00cf84c90bbcf0755a108 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System.Runtime.InteropServices;
namespace Ryujinx.Horizon.Sdk.Settings.System
{
[StructLayout(LayoutKind.Sequential, Size = 0x18, Pack = 0x4)]
struct PtmFuelGaugeParameter
{
public ushort Rcomp0;
public ushort TempCo;
public ushort FullCap;
public ushort FullCapNom;
public ushort IavgEmpty;
public ushort QrTable00;
public ushort QrTable10;
public ushort QrTable20;
public ushort QrTable30;
public ushort Reserved;
public uint Cycles;
}
}
|