• RE: Automation of Tekscope

    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&#160;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
  • RE: MSO58 expectable data transfer rate via USB 3.0 and Ethernet

    Hi Iris,<br> <br> It runs with Windows.<br> Firmware version 1.44.3.433.<br> <br> Martin
  • RE: Automation of Tekscope

    Hi Iris,<br> <br> just to make clear:&#160;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> &#160;
  • RE: Automation of Tekscope

    Hi Iris,<br> <br> according&#160;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 --&gt; search criteria -&gt; I checked all possible options.&#160;<br> In LAN-section I have to enter a hostname of tekscope.<br> <br> The problem is if I open tekscope -&gt; Utility -&gt; 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> --&gt; Where can I set the IP-Address/hostname? Or what is the default value?
  • MSO58 expectable data transfer rate via USB 3.0 and Ethernet

    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&#160;<br> <br> MSO58.write('SAVE:SESsion \&quot;'+fileNameSessionScope+'\&quot;')<br> <br> # Wait for instrument to finish writing image to disk<br> # OPC-query fails. --&gt; hard coded wait<br> # MSO58.query('*OPC?')<br> time.sleep(3)<br> <br> MSO58.write('FILESystem:READFile \&quot;'+fileNameSessionScope+'\&quot;')<br> sessionData = MSO58.read_raw()<br> # MSO58.query( '*OPC?')<br> # # Save session data to local disk<br> # file = open(fileName, &quot;wb&quot;)<br> # file.write(sessionData)<br> # file.close()<br> &#160;