AGENT.Contrib.Hardware.AgentButtonListener.OnInterrupt C# (CSharp) Method

OnInterrupt() private method

private OnInterrupt ( uint data1, uint data2, System.DateTime time ) : void
data1 uint
data2 uint
time System.DateTime
return void
		private void OnInterrupt (uint data1, uint data2, DateTime time)
		{
			if (OnButtonStateChange == null // no listeners
			    || !m_InterruptPortIdToInterruptPortMap.Contains ((Cpu.Pin) data1)) // not listening to the given port (shouldn't have fired anyway)
				return;

			var ip = (InterruptPort) m_InterruptPortIdToInterruptPortMap[(Cpu.Pin) data1];
			//data1 is the is the number of the pin of the switch
			//data2 is the value if the button is pushed or released; 0 = down, 1 = up
			OnButtonStateChange ((AgentButton) data1, ip, (AgentButtonState) data2, time);
		}