Ejemplo n.º 1
0
 /// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="portObjectIn">The interrupt port object that associated with this event </param>
 /// <param name="evCodeIn">A user specified code which appears in the events</param>
 /// <param name="evValueIn">The current state of the pin 0 or 1</param>
 /// sent by this class
 /// <history>
 ///    28 Aug 14  Cynic - Originally written
 /// </history>
 public EventData(InterruptPortMM portObjectIn, int evCodeIn, uint evValueIn)
 {
     PortObject = portObjectIn;
     evCode     = evCodeIn;
     evValue    = evValueIn;
 }
Ejemplo n.º 2
0
 /// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="portObjectIn">The interrupt port object that associated with this event </param>
 /// <history>
 ///    28 Aug 14  Cynic - Originally written
 /// </history>
 public EventData(InterruptPortMM portObjectIn)
 {
     PortObject = portObjectIn;
 }