Searched refs:commandBytes (Results 1 – 2 of 2) sorted by relevance
55 .WithValueField(16, 9, out commandBytes, name: "CMDBYTES") in MPFS_QSPI()245 if(commandBytes.Value != totalBytes) in HandleByte()248 if(commandBytes.Value == 1) in HandleByte()259 if(bytesSent < (int)commandBytes.Value) in HandleByte()263 if(bytesSent == (int)commandBytes.Value) in HandleByte()348 private readonly IValueRegisterField commandBytes; field in Antmicro.Renode.Peripherals.SPI.MPFS_QSPI
145 commandBytes[cmdCount] = (byte)value; in GatherPacket()146 commandBytes[cmdCount + 1] = (byte)(value >> 8); in GatherPacket()176 … this.Log(LogLevel.Debug, "Finished gathering command with OperationCode {0:x}", commandBytes[0]); in GatherPacket()178 var receivedCommand = commandBytes.Take(cmdLength).ToArray(); in GatherPacket()255 private readonly byte[] commandBytes = new byte[16]; field in Antmicro.Renode.Peripherals.ATAPI.ATAPI