#[repr(i16)]pub enum AssertIntrHow {
AssertSignal = -1,
AssertUseAssigned = 0,
AssertIrq1 = 1,
AssertIrq2 = 2,
AssertIrq3 = 3,
AssertIrq4 = 4,
AssertIrq5 = 5,
AssertIrq6 = 6,
AssertIrq7 = 7,
}Expand description
This specifies how to assert the interrupt.
Variants§
AssertSignal = -1
Send the notification via a VXI signal.
AssertUseAssigned = 0
Use whatever notification method that has been assigned to the local device.
AssertIrq1 = 1
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
AssertIrq2 = 2
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
AssertIrq3 = 3
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
AssertIrq4 = 4
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
AssertIrq5 = 5
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
AssertIrq6 = 6
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
AssertIrq7 = 7
Send the interrupt via the specified VXI/VME IRQ line. This uses the standard VXI/VME ROAK (Release On AcKnowledge) interrupt mechanism, rather than the older VME RORA (Release On Register Access) mechanism.
Trait Implementations§
Source§impl Clone for AssertIntrHow
impl Clone for AssertIntrHow
Source§fn clone(&self) -> AssertIntrHow
fn clone(&self) -> AssertIntrHow
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more