Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DMCAN.cs26 public MCAN(IMachine machine, IMultibyteWritePeripheral messageRAM) in MCAN() argument
29 this.messageRAM = messageRAM; in MCAN()
619 byte[] scanBytes = messageRAM.ReadBytes((long)offset, 4); in ScanDedicatedTxBuffers()
653 byte[] scanBytes = messageRAM.ReadBytes((long)offset, 4); in ScanTxFIFO()
682 byte[] scanBytes = messageRAM.ReadBytes((long)offset, 4); in ScanTxQueue()
710 var frameBytes = messageRAM.ReadBytes((long)addr, (int)bufferSizeInBytes); in TransmitBuffer()
799 messageRAM.WriteBytes((long)addr, txFIFOElementBytes, 0, txFIFOElementBytes.Length); in StoreInTxEventFIFO()
879 var filterBytes = messageRAM.ReadBytes(addr, filterSizeInBytes); in FilterMessage()
1194 messageRAM.WriteBytes((long)addr, rxHeaderBytes, 0, rxHeaderBytes.Length); in StoreInRxFIFO()
1195 messageRAM.WriteBytes((long)addr + rxHeaderBytes.Length, rxData, 0, rxData.Length); in StoreInRxFIFO()
[all …]
DMCAN_Structures.cs174 private IMultibyteWritePeripheral messageRAM; field in Antmicro.Renode.Peripherals.CAN.MCAN