#!/usr/bin/env python __author__ = 'RoGeorge' # """ # TODO: Use "waveform:data?" multiple times to extract the whole 12M points in order to overcome the "Memory lack in waveform reading!" screen message """ # TODO: Detect if the osc is in RUN or in STOP mode (looking at the length of data extracted) # TODO: Investigate scaling. Sometimes 3.0e-008 instead of expected 3.0e-000 # TODO: Add timestamp and mark the trigger point as t0 # TODO: Use channels label instead of chan1, chan2, chan3, chan4, math # TODO: Add command line parameters file path # TODO: Speed-up the transfer, try to replace Telnet with direct TCP # TODO: Add GUI # TODO: Add browse and custom filename selection # TODO: Create executable distributions # from telnetlib_receive_all import Telnet from Rigol_functions import * import time from PIL import Image import StringIO import sys import os import platform # Update the next lines for your own default settings: path_to_save = "" save_format = "PNG" IP_DS1104Z = "192.168.1.3" # Rigol/LXI specific constants port = 5555 expected_len = 1152068 TMC_header_len = 11 terminator_len = 3 big_wait = 10 small_wait = 1 company = 0 model = 1 serial = 2 # Check command line parameters script_name = os.path.basename(sys.argv[0]) def print_help(): # Print usage print print "Usage:" print " " + "python " + script_name + " png|bmp|csv [oscilloscope_IP [save_path]]" print print "Usage examples:" print " " + "python " + script_name + " png" print " " + "python " + script_name + " csv 192.168.1.3" print print "The following usage cases are not yet implemented:" print " " + "python " + script_name + " bmp 192.168.1.3 my_place_for_captures" print print "This program captures either the waveform or the whole screen" print " of a Rigol DS1000Z series oscilloscope, then save it on the computer" print " as a CSV, PNG or BMP file with a timestamp in the file name." print print " The program is using LXI protocol, so the computer" print " must have LAN connection with the oscilloscope." print " USB and/or GPIB connections are not used by this software." print print " No VISA, IVI or Rigol drivers are needed." print # Read/verify file type if len(sys.argv) <= 1: print_help() sys.exit("Warning - wrong command line parameters.") elif sys.argv[1].lower() not in ["png", "bmp", "csv"]: print_help() print "This file type is not supported: ", sys.argv[1] sys.exit("ERROR") file_format = sys.argv[1].lower() # Read IP if len(sys.argv) > 1: IP_DS1104Z = sys.argv[2] # Create/check if 'path' exists # Check network response (ping) if platform.system() == "Windows": response = os.system("ping -n 1 " + IP_DS1104Z + " > nul") else: response = os.system("ping -c 1 " + IP_DS1104Z + " > /dev/null") if response != 0: print print "No response pinging " + IP_DS1104Z print "Check network cables and settings." print "You should be able to ping the oscilloscope." # Open a modified telnet session # The default telnetlib drops 0x00 characters, # so a modified library 'telnetlib_receive_all' is used instead tn = Telnet(IP_DS1104Z, port) tn.write("*idn?") # ask for instrument ID instrument_id = tn.read_until("\n", 1) # Check if instrument is set to accept LAN commands if instrument_id == "command error": print instrument_id print "Check the oscilloscope settings." print "Utility -> IO Setting -> RemoteIO -> LAN must be ON" sys.exit("ERROR") # Check if instrument is indeed a Rigol DS1000Z series id_fields = instrument_id.split(",") if (id_fields[company] != "RIGOL TECHNOLOGIES") or \ (id_fields[model][:3] != "DS1") or (id_fields[model][-1] != "Z"): print print "ERROR: No Rigol from series DS1000Z found at ", IP_DS1104Z sys.exit("ERROR") print "Instrument ID:", print instrument_id # Prepare filename as C:\MODEL_SERIAL_YYYY-MM-DD_HH.MM.SS timestamp = time.strftime("%Y-%m-%d_%H.%M.%S", time.localtime()) filename = path_to_save + id_fields[model] + "_" + id_fields[serial] + "_" + timestamp if file_format in ["png", "bmp"]: # Ask for an oscilloscope display print screen tn.write("display:data?") print "Receiving screen capture..." buff = tn.read_until("\n", big_wait) # Just in case the transfer did not complete in the expected time while len(buff) < expected_len: tmp = tn.read_until("\n", small_wait) if len(tmp) == 0: break buff += tmp # Strip TMC Blockheader and terminator bytes buff = buff[TMC_header_len:-terminator_len] # Save as PNG or BMP according to file_format im = Image.open(StringIO.StringIO(buff)) im.save(filename + "." + file_format, file_format) print "Saved file:", filename + "." + file_format elif file_format == "csv": # Put osc in STOP mode # tn.write("stop") # response = tn.read_until("\n", 1) # Scan for displayed channels channel_list = [] for channel in ["chan1", "chan2", "chan3", "chan4", "math"]: tn.write(channel + ":display?") response = tn.read_until("\n", 1) # Strip '\n' terminator response = response[:-1] if response == '1': channel_list += [channel] print "Active channels on the display:", channel_list csv_buff = "" depth = get_memory_depth(tn) # for each active channel for channel in channel_list: print # Set WAVE parameters tn.write("waveform:source " + channel) time.sleep(1) tn.write("waveform:form asc") time.sleep(1) # Maximum - only displayed data when osc. in RUN mode, or full memory data when STOPed tn.write("waveform:mode max") time.sleep(1) # Get all possible data buff = "" data_available = True # max_chunk is dependent of the wav:mode and the oscilloscope type # if you get on the oscilloscope screen the error message # "Memory lack in waveform reading!", then decrease max_chunk value max_chunk = 100000.0 # tested for DS1104Z if max_chunk > depth: max_chunk = depth n1 = 1.0 n2 = max_chunk data_available = True while data_available: display_n1 = n1 stop_point = is_waveform_from_to(tn, n1, n2) if stop_point == 0: data_available = False print "ERROR: Stop data point index lower then start data point index" sys.exit("ERROR") elif stop_point < n1: break elif stop_point < n2: n2 = stop_point is_waveform_from_to(tn, n1, n2) data_available = False else: data_available = True n1 = n2 + 1 n2 += max_chunk tn.write("waveform:data?") print "Data from channel " + str(channel) + ", points " +\ str(int(display_n1)) + "-" + str(int(stop_point)) + ": Receiving..." buff_chunks = tn.read_until("\n", big_wait) # Just in case the transfer did not complete in the expected time while buff_chunks[-1] != "\n": tmp = tn.read_until("\n", small_wait) if len(tmp) == 0: break buff_chunks += tmp # Append data chunks # Strip TMC Blockheader and terminator bytes buff += buff_chunks[TMC_header_len:-1] + "," buff = buff[:-1] # Append each value to csv_buff # Process data buff_list = buff.split(",") buff_rows = len(buff_list) # Put red data into csv_buff csv_buff_list = csv_buff.split(os.linesep) csv_rows = len(csv_buff_list) current_row = 0 if csv_buff == "": csv_first_column = True csv_buff = str(channel) + os.linesep else: csv_first_column = False csv_buff = str(csv_buff_list[current_row]) + "," + str(channel) + os.linesep for point in buff_list: current_row += 1 if csv_first_column: csv_buff += str(point) + os.linesep else: if current_row < csv_rows: csv_buff += str(csv_buff_list[current_row]) + "," + str(point) + os.linesep else: csv_buff += "," + str(point) + os.linesep # Save data as CSV scr_file = open(filename + "." + file_format, "wb") scr_file.write(csv_buff) scr_file.close() print "Saved file:", filename + "." + file_format tn.close()