Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/
DI2CHost.cs40 var firstByte = (byte)(addr << 1) | 0x0; in WriteBytes()
44 bytes[0] = (byte)firstByte; in WriteBytes()
52 var firstByte = (byte)(addr << 1) | 0x1; in ReadBytes()
53 currentSlave.Write(new byte[] { (byte)firstByte, (byte)count }); in ReadBytes()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DGigaDevice_GD25LQ.cs101 private void RecognizeOperation(byte firstByte) in RecognizeOperation() argument
106 switch((Commands)firstByte) in RecognizeOperation()
132 …LogLevel.Error, "Command decoding failed on byte: 0x{0:X} ({1}).", firstByte, (Commands)firstByte); in RecognizeOperation()
DGenericSpiFlash.cs242 private void RecognizeOperation(byte firstByte) in RecognizeOperation() argument
246 currentOperation.DummyBytesRemaining = GetDummyBytes((Commands)firstByte); in RecognizeOperation()
247 switch(firstByte) in RecognizeOperation()
412 … this.Log(LogLevel.Warning, "Unhandled parameterless command {0}", (Commands)firstByte); in RecognizeOperation()
415 …LogLevel.Error, "Command decoding failed on byte: 0x{0:X} ({1}).", firstByte, (Commands)firstByte); in RecognizeOperation()
DMXIC_MX66UM1G45G.cs244 private void RecognizeOperation(byte firstByte) in RecognizeOperation() argument
248 switch(firstByte) in RecognizeOperation()
347 …LogLevel.Error, "Command decoding failed on byte: 0x{0:X} ({1}).", firstByte, (Commands)firstByte); in RecognizeOperation()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DUT32_CAN.cs389 var firstByte = message.Data.ElementAtOrDefault(0); in FilterFrame()
390 input[1] = input[1].ReplaceBits(firstByte, 4, sourcePosition: 4); in FilterFrame()
391 input[3] = input[3].ReplaceBits(firstByte, 4); in FilterFrame()