06-12-2006 08:18 PM
Using VISA, an IEEE488.1 "get" message can be sent to multiple devices at a time with the following method. Mind that you must have an INTFC session (equivalent to NI-488.2M board-level session).
' Open INTFC session, then reference to INTFC interface
Dim gpintfc As IGpibIntfc
Set gpintfc = rm.Open("GPIB0::INTFC")
' If needed, send IFC and REN (probably unneeded)
' gpintfc.SendIFC
' gpintfc.ControlREN GPIB_REN_ASSERT
' Send ATN-true command
Dim cmd(0 To 4) As Byte
cmd(0) = &H3F '
cmd(1) = &H40 + gpintfc.PrimaryAddress
cmd(2) = &H20 + 1
cmd(3) = &H20 + 2
cmd(4) = 8
gpintfc.Command cmd, 5
06-12-2006 08:18 PM
Using VISA, an IEEE488.1 "get" message can be sent to multiple devices at a time with the following method. Mind that you must have an INTFC session (equivalent to NI-488.2M board-level session).
' Open INTFC session, then reference to INTFC interface
Dim gpintfc As IGpibIntfc
Set gpintfc = rm.Open("GPIB0::INTFC")
' If needed, send IFC and REN (probably unneeded)
' gpintfc.SendIFC
' gpintfc.ControlREN GPIB_REN_ASSERT
' Send ATN-true command
Dim cmd(0 To 4) As Byte
cmd(0) = &H3F '
cmd(1) = &H40 + gpintfc.PrimaryAddress
cmd(2) = &H20 + 1
cmd(3) = &H20 + 2
cmd(4) = 8
gpintfc.Command cmd, 5
06-13-2006 11:40 AM
03-11-2013 02:41 PM
Just wondering why .. so many questions on these forurms are not really answered..
This is just an example of such
03-11-2013 03:23 PM
@hickock6 wrote:
Just wondering why .. so many questions on these forurms are not really answered..
This is just an example of such
And you decided to ressurect a 7-year old thread because you were bored ??????
03-11-2013 04:43 PM
ya ..*chuckle*..