Home
last modified time | relevance | path

Searched defs:TemperatureSampleWrapper (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DMAX30208.cs423 private struct TemperatureSampleWrapper struct in Antmicro.Renode.Peripherals.Sensors.MAX30208
425 public TemperatureSampleWrapper(short data) in TemperatureSampleWrapper() argument
430 public short Value { get; }
431 public byte Byte1 => (byte)(Value >> 8);
432 public byte Byte2 => (byte)Value;
433 public byte[] Bytes => new byte[] { Byte1, Byte2 };
434 public IEnumerator<byte> Enumerator => Bytes.OfType<byte>().GetEnumerator();