Edit

Share via


CanIntE Constructors

Definition

Overloads

CanIntE(Byte)

Initializes a new instance of the CanIntE class.

CanIntE(Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean)

Initializes a new instance of the CanIntE class.

CanIntE(Byte)

Initializes a new instance of the CanIntE class.

public CanIntE (byte value);
new Iot.Device.Mcp25xxx.Register.Interrupt.CanIntE : byte -> Iot.Device.Mcp25xxx.Register.Interrupt.CanIntE
Public Sub New (value As Byte)

Parameters

value
Byte

The value that represents the register contents.

Applies to

CanIntE(Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, Boolean)

Initializes a new instance of the CanIntE class.

public CanIntE (bool receiveBuffer0FullInterruptEnable, bool receiveBuffer1FullInterruptEnable, bool transmitBuffer0EmptyInterruptEnable, bool transmitBuffer1EmptyInterruptEnable, bool transmitBuffer2EmptyInterruptEnable, bool errorInterruptEnable, bool wakeUpInterruptEnable, bool messageErrorInterruptEnable);
new Iot.Device.Mcp25xxx.Register.Interrupt.CanIntE : bool * bool * bool * bool * bool * bool * bool * bool -> Iot.Device.Mcp25xxx.Register.Interrupt.CanIntE
Public Sub New (receiveBuffer0FullInterruptEnable As Boolean, receiveBuffer1FullInterruptEnable As Boolean, transmitBuffer0EmptyInterruptEnable As Boolean, transmitBuffer1EmptyInterruptEnable As Boolean, transmitBuffer2EmptyInterruptEnable As Boolean, errorInterruptEnable As Boolean, wakeUpInterruptEnable As Boolean, messageErrorInterruptEnable As Boolean)

Parameters

receiveBuffer0FullInterruptEnable
Boolean

RX0IE: Receive Buffer 0 Full Interrupt Enable bit. True = Interrupt when message is received in RXB0. False = Disabled.

receiveBuffer1FullInterruptEnable
Boolean

RX1IE: Receive Buffer 1 Full Interrupt Enable bit. True = Interrupt when message is received in RXB1. False = Disabled.

transmitBuffer0EmptyInterruptEnable
Boolean

TX0IE: Transmit Buffer 0 Empty Interrupt Enable bit. True = Interrupt on TXB0 becoming empty. False = Disabled.

transmitBuffer1EmptyInterruptEnable
Boolean

TX1IE: Transmit Buffer 1 Empty Interrupt Enable bit. True = Interrupt on TXB1 becoming empty. False = Disabled.

transmitBuffer2EmptyInterruptEnable
Boolean

TX2IE: Transmit Buffer 2 Empty Interrupt Enable bit. True = Interrupt on TXB2 becoming empty. False = Disabled.

errorInterruptEnable
Boolean

ERRIE: Error Interrupt Enable bit (multiple sources in the EFLG register). True = Interrupt on EFLG error condition change. False = Disabled.

wakeUpInterruptEnable
Boolean

WAKIE: Wake-up Interrupt Enable bit. True = Interrupt on CAN bus activity. False = Disabled.

messageErrorInterruptEnable
Boolean

MERRE: Message Error Interrupt Enable bit. True = Interrupt on error during message reception or transmission. False = Disabled.

Applies to