Searched refs:firstByte (Results 1 – 5 of 5) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/ |
| D | I2CHost.cs | 40 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/ |
| D | GigaDevice_GD25LQ.cs | 101 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()
|
| D | GenericSpiFlash.cs | 242 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()
|
| D | MXIC_MX66UM1G45G.cs | 244 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/ |
| D | UT32_CAN.cs | 389 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()
|