Esempio n. 1
0
 private bool GetBit(BitPosition bit)
 {
     return(BinaryHelper.CheckBit(this.IMR, (byte)bit));
 }
Esempio n. 2
0
 public bool IsPhysicalAddressMatch()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.PAM));
 }
Esempio n. 3
0
 public bool IsMulticastAddress()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.MAR));
 }
Esempio n. 4
0
 public bool IsRuntPacket()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.RUNT));
 }
Esempio n. 5
0
 public bool IsInvalidSymbolError()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.ISE));
 }
Esempio n. 6
0
 public bool IsCRCError()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.CRC));
 }
Esempio n. 7
0
 public bool IsLongPacket()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.LONG));
 }
Esempio n. 8
0
 public bool IsFrameAlignmentError()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.FAE));
 }
Esempio n. 9
0
 public bool IsReceiveOk()
 {
     return(BinaryHelper.CheckBit(head, (ushort)PacketHeadBit.ROK));
 }
 public bool IsEarlyRXGoodPacket()
 {
     return(BinaryHelper.CheckBit((ushort)ersr, (ushort)Bit.ERGOOD));
 }
 public bool IsEarlyRXOverwrite()
 {
     return(BinaryHelper.CheckBit((ushort)ersr, (ushort)Bit.EROVW));
 }
 public bool IsEarlyRXOkay()
 {
     return(BinaryHelper.CheckBit((ushort)ersr, (ushort)Bit.EROK));
 }