Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DMPFS_USB.cs30 fifoFromDeviceToHost = new Queue<byte>[NumberOfEndpoints]; in MPFS_USB()
40 fifoFromDeviceToHost[i] = new Queue<byte>(); in MPFS_USB()
260 …lueField(0, 14, FieldMode.Read, valueProviderCallback: _ => (byte)fifoFromDeviceToHost[index.Value… in DefineIndexedRegisters()
289 result |= (ulong)((long)fifoFromDeviceToHost[fifoId].Dequeue() << (8 * i)); in ReadFromFifo()
385 fifoFromDeviceToHost[0].EnqueueRange(receivedBytes); in DefineNonIndexedEndpointControlAndStatusRegisters()
412 return checked((byte)fifoFromDeviceToHost[0].Count); in DefineNonIndexedEndpointControlAndStatusRegisters()
445 fifoFromDeviceToHost[endpointId].EnqueueRange(bytes); in DefineNonIndexedEndpointControlAndStatusRegisters()
458 fifoFromDeviceToHost[endpointId].Clear(); in DefineNonIndexedEndpointControlAndStatusRegisters()
467 return checked((uint)fifoFromDeviceToHost[endpointId].Count); in DefineNonIndexedEndpointControlAndStatusRegisters()
634 private readonly Queue<byte>[] fifoFromDeviceToHost; field in Antmicro.Renode.Peripherals.USB.MPFS_USB