Edit

Share via


RxBxSidl Constructors

Definition

Overloads

RxBxSidl(Byte, Byte)

Initializes a new instance of the RxBxSidl class.

RxBxSidl(Byte, Byte, Boolean, Boolean, Byte)

Initializes a new instance of the RxBxSidl class.

RxBxSidl(Byte, Byte)

Initializes a new instance of the RxBxSidl class.

public RxBxSidl (byte rxBufferNumber, byte value);
new Iot.Device.Mcp25xxx.Register.MessageReceive.RxBxSidl : byte * byte -> Iot.Device.Mcp25xxx.Register.MessageReceive.RxBxSidl
Public Sub New (rxBufferNumber As Byte, value As Byte)

Parameters

rxBufferNumber
Byte

Rx buffer number

value
Byte

The value that represents the register contents.

Applies to

RxBxSidl(Byte, Byte, Boolean, Boolean, Byte)

Initializes a new instance of the RxBxSidl class.

public RxBxSidl (byte rxBufferNumber, byte extendedIdentifier, bool extendedIdentifierFlag, bool standardFrameRemoteTransmitRequest, byte standardIdentifier);
new Iot.Device.Mcp25xxx.Register.MessageReceive.RxBxSidl : byte * byte * bool * bool * byte -> Iot.Device.Mcp25xxx.Register.MessageReceive.RxBxSidl
Public Sub New (rxBufferNumber As Byte, extendedIdentifier As Byte, extendedIdentifierFlag As Boolean, standardFrameRemoteTransmitRequest As Boolean, standardIdentifier As Byte)

Parameters

rxBufferNumber
Byte

Receive Buffer Number. Must be a value of 0 - 1.

extendedIdentifier
Byte

EID[17:16]: Extended Identifier bits. These bits contain the two Most Significant bits of the Extended Identifier for the received message.

extendedIdentifierFlag
Boolean

IDE: Extended Identifier Flag bit. This is sometimes referred to as EFF. This bit indicates whether the received message was a standard or an extended frame. True = Received message was an extended frame. False = Received message was a standard frame.

standardFrameRemoteTransmitRequest
Boolean

SRR: Standard Frame Remote Transmit Request bit (valid only if the IDE bit = 0). True = Standard frame Remote Transmit Request received. False = Standard data frame received.

standardIdentifier
Byte

SID[2:0]: Standard Identifier bits. These bits contain the three Least Significant bits of the Standard Identifier for the received message.

Applies to