Question
J'ai un fichier de paramètres S sur mon PC et je souhaite le charger dans une trace mémorisée de mon analyseur de réseau.
Comment puis-je effectuer cette opération via un contrôle à distance ?
J'ai un fichier de paramètres S sur mon PC et je souhaite le charger dans une trace mémorisée de mon analyseur de réseau.
Comment puis-je effectuer cette opération via un contrôle à distance ?
Vous avez besoin du programme ci-joint écrit en VisualBasicApplication sous EXCEL.
Si vous avez installé un pilote NI-VISA et établi une connexion GPIB ou TCP/IP avec l'analyseur de réseau, vous pouvez exécuter le programme vous-même.
Le programme recherche le fichier TEST.S1P dans 'C:\Work\'.
La partie importante est la suivante :
Rem Open the S-parameter file Test.S1P and read the content
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile("C:\work\Test.S1P")
Rem s is the number of bytes with data Test.S1P file
s = f.Size
Open "C:\work\Test.S1P" For Input As #1
Do While Not EOF(1)
Text1 = Input(s, #1)
Loop
Close #1
Rem Create the data to send to the ZVL
Rem l is the number of bytes needed for the length information of the data
l = Len(s)
Text2 = "#" + CStr(l) + CStr(s) + Text1
Rem Send the data in a file to the ZVL
commandStr = "MMEMory:DATA 'C:\Temp\Test.S1P', " + Text2
countsend = Len(commandStr)
status = viWrite(vinstr, commandStr, countsend, count)
Rem Open the file in a memory trace
commandStr = "MMEM:LOAD:TRAC 'TRC1','c:\temp\test.s1p'"
countsend = Len(commandStr)
status = viWrite(vinstr, commandStr, countsend, count)