-
Hi<br>
<br>
thank you very much for your answer.<br>
Can you please give me more information how to setup this interface?<br>
In the manual you linked is on page 9 Setting Up Remote Communications Hardware. This is helpfull if I want to connect to a real MSO.<br>
<br>
On page 11 is described how to deal with a real MSO on software side. This is OK if I want to control a real MSO.<br>
But I want to control my PC-Software Tek-Scope<br>
Could you please check my attachment? There you will see I am not able to setup an IP-Adress for socket server or something directing in this direction.<br>
<br>
Are you able to control your on Windows installed software Tekscope?<br>
<br>
Best regards<br>
<br>
Martin
-
Hi Iris,<br>
<br>
It runs with Windows.<br>
Firmware version 1.44.3.433.<br>
<br>
Martin
-
Hi Iris,<br>
<br>
just to make clear: I don't want to control my MSO58 oscilloscope.<br>
<br>
I have no connection problems if I want to control my MSO oscilloscope.<br>
<br>
I want to automate the PC-software Tekscope.<br>
<br>
Attached you can find my settings.<br>
If I click on update instrument lists, the pc-software tekscope is not listed.<br>
<br>
BR<br>
<br>
Martin<br>
 
-
Hi Iris,<br>
<br>
according https://download.tek.com/manual/4-5-6-MSO-Programmer-Manual-077130512.pdf it is possible to automate Tekscope.<br>
<br>
on my laptop is NI VISA and TekVISA installed.<br>
In openChoice VISA64 Conflict Manager is only TekVISA enabled.<br>
Default-Visa is set to Tektronix<br>
In openChoice Instrument manager --> search criteria -> I checked all possible options. <br>
In LAN-section I have to enter a hostname of tekscope.<br>
<br>
The problem is if I open tekscope -> Utility -> I/O I have these options: to enable/disable socket server, protocoll (none/terminal), Port.<br>
But there is no option to set hostname or ip-address.<br>
<br>
--> Where can I set the IP-Address/hostname? Or what is the default value?
-
Hello<br>
<br>
what is the expectable data transfer rate if I use USB3.0 and Ethernet?<br>
This is a snip from my current python script <br>
<br>
MSO58.write('SAVE:SESsion \"'+fileNameSessionScope+'\"')<br>
<br>
# Wait for instrument to finish writing image to disk<br>
# OPC-query fails. --> hard coded wait<br>
# MSO58.query('*OPC?')<br>
time.sleep(3)<br>
<br>
MSO58.write('FILESystem:READFile \"'+fileNameSessionScope+'\"')<br>
sessionData = MSO58.read_raw()<br>
# MSO58.query( '*OPC?')<br>
# # Save session data to local disk<br>
# file = open(fileName, "wb")<br>
# file.write(sessionData)<br>
# file.close()<br>