Searched refs:commandsToActivate (Results 1 – 1 of 1) sorted by relevance
148 … commandsToActivate = BitConverter.ToUInt16(buffer.GetRange(0, HandshakeHeaderSize).ToArray(), 0); in StepReceiveFiniteStateMachine()150 this.Log(LogLevel.Noisy, "{0} commands to activate", commandsToActivate); in StepReceiveFiniteStateMachine()155 if(commandsToActivate > 0 && buffer.Count >= 2) in StepReceiveFiniteStateMachine()157 var toActivate = (int)Math.Min(commandsToActivate, buffer.Count / 2); in StepReceiveFiniteStateMachine()170 commandsToActivate -= toActivate; in StepReceiveFiniteStateMachine()173 if(commandsToActivate > 0) in StepReceiveFiniteStateMachine()332 private int commandsToActivate = 0; field in Antmicro.Renode.Network.ExternalControlServer