Posted about a year ago by Bidinger, Don
I created a script that works in Test Script Builder and am simply moving the script to python.  I seem to be stuck on how to pass the long array using the keithley.write() statements.  Things work if I shorten the array, but if i send the full array in I get an error input buffer overrun -363.

My code is relatively simple:

myList = {-.650, -6.30, -.670, -.625, -.665, .........-.170}  has 205 data points
smua.trigger.source.listv(myList)

I have tried to break up the data in multiple write statements, i have tried sending it in one statement, but i seem to missing something.  Is there a continuation character needed when breaking up the array?
keithley.write('myList = {-0.625, -0.580, -0.620, -0.575,.....-0.580, ')
keithley.write('-0.535, -0.575, -0.530, -0.570,..... -0.490,')
.
.
.



 
Posted about a year ago by Bidinger, Don
I am using 2602b
Posted about a year ago by C, Andrea
The input buffer is ~2000 characters.  Strings larger than that in a single VISA write will cause the -363, Input Buffer Overun Error.

Ideally, myList could be computed/generated in the TSP Lua runtime within the 2600B scripting engine.
But if not possible for your use case, here is one way that a long array in Python can be populated into a table in the TSP side of things.

 
  1. # in Python, build an array of values
  2. record_length = 360   # how many datapoints to generate
  3. cycles = 3 # how many sine cycles
  4. length = np.pi * 2 * cycles
  5. vector = np.sin(np.arange(0, length, length / record_length))
  6.  
  7. #send commannds to
  8. # create an empty table, myList, on the 2600B
  9. my_instr.write("myList={}")
  10.  
  11. #index through and write them on by one to table variable in the Lua runtime environment
  12. #Lua uses 1 based index vs. zero based for Python
  13. #myLuaArray[i+1] = PythonArray[i]
  14. for i in range(0, record_length):
  15.      my_instr.write("myList[" + str(i+1) + "] = " + str(vector[i]))
  16.  
  17. #print out how many elements we have loaded into myList
  18. print("Number of myList entries: " + my_instr.query("print(table.getn(myList))"))

You must be signed in to post in this forum.