Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DCadence_xSPI.cs28 …llerIdle = new CadenceInterruptFlag(() => currentCommand == null || currentCommand.Completed || cu… in Cadence_xSPI()
29 …commandCompleted = new CadenceInterruptFlag(() => (currentCommand as STIGCommand)?.Completed ?? fa… in Cadence_xSPI()
31 …dmaTriggered = new CadenceInterruptFlag(() => (currentCommand as IDMACommand)?.DMATriggered ?? fal… in Cadence_xSPI()
32 … dmaError = new CadenceInterruptFlag(() => (currentCommand as IDMACommand)?.DMAError ?? false); in Cadence_xSPI()
33 …autoCommandCompleted = new CadenceInterruptFlag(() => (currentCommand as PIOCommand)?.Completed ??… in Cadence_xSPI()
101 currentCommand = null; in Reset()
122 var previousCommand = currentCommand; in TriggerCommand()
123 currentCommand = Command.CreateCommand(this, new CommandPayload(commandPayload)); in TriggerCommand()
124 this.Log(LogLevel.Debug, "New command: {0}", currentCommand); in TriggerCommand()
126 if(currentCommand == null) in TriggerCommand()
[all …]
DNPCX_Flash.cs43 if(!currentCommand.HasValue) in Transmit()
45 currentCommand = (Commands)data; in Transmit()
48 switch(currentCommand.Value) in Transmit()
60 switch(currentCommand.Value) in Transmit()
161 if(Enum.IsDefined(typeof(Commands), currentCommand.Value)) in Transmit()
163 this.WarningLog("Unsupported command: {0}", currentCommand.Value); in Transmit()
167 this.ErrorLog("Invalid command: {0}", currentCommand.Value); in Transmit()
176 currentCommand = null; in FinishTransmission()
257 private Commands? currentCommand; field in Antmicro.Renode.Peripherals.SPI.NPCX_Flash
DIMXRT_LPSPI.cs45 currentCommand = null; in Reset()
94 …ask, name: "TXMSK - Transmit Data Mask", valueProviderCallback: _ => currentCommand?.TxMask ?? fal… in DefineRegisters()
95 …Mask, name: "RXMSK - Receive Data Mask", valueProviderCallback: _ => currentCommand?.RxMask ?? fal… in DefineRegisters()
96 …and, name: "CONTC - Continuing Command", valueProviderCallback: _ => currentCommand?.ContinuingCom… in DefineRegisters()
97 …fer, name: "CONT - Continuous Transfer", valueProviderCallback: _ => currentCommand?.Continuous ??… in DefineRegisters()
392 if(!currentCommand.ContinuingCommand) in TrySendDataInner()
398 if(sizeLeft == 0 && !currentCommand.ContinuingCommand) in TrySendDataInner()
445 currentCommand = cmd; in TryTransmitFifoDequeue()
502 … bool initSpiXfer = currentCommand != null && poppedData.HasValue && moduleEnable.Value; in UpdateTransmitter()
510 … if(!currentCommand.ContinuingCommand && continuousTransferInProgress && (sizeLeft == 0)) in UpdateTransmitter()
[all …]
DIMXRT_FlexSPI.cs425 currentCommand = 0; in Reset()
431 if(currentCommand != descriptors.Count) in LoadCommands()
435 currentCommand = 0; in LoadCommands()
449 if(currentCommand == descriptors.Count) in Execute()
462 while(currentCommand < descriptors.Count) in Execute()
464 if(!HandleCommand(descriptors[currentCommand++], device)) in Execute()
586 private int currentCommand; field in Antmicro.Renode.Peripherals.SPI.IMXRT_FlexSPI.CommandsEngine
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs914 var currentCommand = FindLastCommandInString(prefix); in SuggestCommands()
917 …refixToAdd = prefix.EndsWith(currentCommand, StringComparison.Ordinal) ? prefix.Substring(0, prefi… in SuggestCommands()
991 var currentCommandSplit = currentCommand.Split(' '); in SuggestCommands()
993 if(currentCommand.Contains(' ')) in SuggestCommands()