Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DLiteX_I2C.cs51 if(bufferFromDevice.Count == 0) in LiteX_I2C()
59 if(bufferFromDevice.Count == 0) in LiteX_I2C()
67 return bufferFromDevice.Peek(); in LiteX_I2C()
72 bufferFromDevice = new Queue<bool>(); in LiteX_I2C()
168 bufferFromDevice.Enqueue(slave == null); in HandleClockRising()
227 bufferFromDevice.Enqueue(false); in HandleClockRising()
239 bufferFromDevice.TryDequeue(out var unused); in HandleClockFalling()
246 bufferFromDevice.Clear(); in ResetBuffers()
269 bufferFromDevice.Enqueue(bit); in ReadNextByteFromDevice()
277 private readonly Queue<bool> bufferFromDevice; field in Antmicro.Renode.Peripherals.I2C.LiteX_I2C
DLiteX_I2C_Zephyr.cs52 if(bufferFromDevice.Count == 0) in LiteX_I2C_Zephyr()
59 return bufferFromDevice.Peek(); in LiteX_I2C_Zephyr()
64 bufferFromDevice = new Queue<bool>(); in LiteX_I2C_Zephyr()
154 bufferFromDevice.Enqueue(slave == null); in HandleClockRising()
175 bufferFromDevice.Enqueue(bit); in HandleClockRising()
229 bufferFromDevice.Enqueue(false); in HandleClockRising()
241 var isEmpty = bufferFromDevice.TryDequeue(out unused); in HandleClockFalling()
248 bufferFromDevice.Clear(); in ResetBuffers()
259 private readonly Queue<bool> bufferFromDevice; field in Antmicro.Renode.Peripherals.I2C.LiteX_I2C_Zephyr