Hi, I use GPIB to control our device (frequency syntheiszer). Under interative control mode,
I can set the frequency to my device (for example 10MHz). The commonds used are:
:ibdev 0 16 0 13 1 0
ud0: ibwrt "F010000000\n"
Then I use the Visual Basic programming language as:
Dim Dev As Integer
Call ibdev(0,16,0,13,1,0,Dev%)
Call ibwrt(Dev%,"F010000000\n")
The device can still set to 10MHz. However, if I change the frequence to 20MHz as
Call ibwrt(Dev%,"F020000000\n")
The device are still at 10MHz.
Who knows the answer, I really apprecite it.