Home
last modified time | relevance | path

Searched refs:rawSample (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Sensor/
DSensorSamplesPacket.cs59 …var rawSample = stream.ReadBytes(valueSize.Value * valueDimensions.Value, throwIfEndOfStream: true… in ParseFile()
60 … var sampleValues = ParseSampleValues(rawSample, valueSize.Value, sensitivity.Value); in ParseFile()
80 …private static List<decimal> ParseSampleValues(byte[] rawSample, int valueSize, decimal sensitivit… in ParseSampleValues() argument
83 for(int i = 0; i < rawSample.Length; i += valueSize) in ParseSampleValues()
89 rawValue = BitConverter.ToInt16(rawSample, i); in ParseSampleValues()
92 rawValue = BitConverter.ToInt32(rawSample, i); in ParseSampleValues()
95 rawValue = BitConverter.ToInt64(rawSample, i); in ParseSampleValues()