06-03-2008 07:23 AM
06-03-2008 08:41 AM
NI does not have a driver but you can use the Instrument I/O Assistant to implement the same commands you used when you tested the com port and the connection to the instrument.
What's a 'trieber'?
06-03-2008 09:03 AM
Hi,
sorry "Treiber" not "Trieber"
I will try to do it.
06-03-2008 09:30 AM
Sorry I misspelled it but I don't know what Treiber is either.
Hoever, in this post you were given a link to a driver. What was the problem you had with that?
06-04-2008 02:11 AM
06-04-2008 06:34 AM
06-04-2008 08:40 AM
06-05-2008 05:39 AM
Hello Dennis,
how are you?
so I did this (see the pictures) but I didn't have any response from my instrument
The code you see on frontpanel_1 ist a specific command of the instrument and this ist the selection supervisory sequence with response, means the intrument will be initialized as slave and will be in order to receive SCPI commands. The suffix command is <ENQ> and the sequence looks like this:
<groupadress><groupadress><useradress><useradress>sr<ENQ>
for example (from tthe istrument' handbook) groupadress: 5, useradress: 6
=> 5566sr<ENQ>
The instrument will then answer with <ACK> if ready to receive data otherwise with <NAK> !
I wrote it either with or without brackets (0011sr<ENQ> or 0011srENQ) and no reaction of the instrument.
my VI works and the RS232 interface also, I did a with it a loopingtest!
what's wrong here!?
Lauvia
06-05-2008 06:43 AM
06-05-2008 08:29 AM
Hi,
I took in consideration! I think it must be written this way!
0011srENQ as pecified in the handbook of the intrument, where 0 an 1 are in HEX, sr and ENQ, ASCII
the second example was groupadress: 10; useradress:11 and the sequence: aabbsr<ENQ>
thanks