-
| 
         I'm currently writing a script for a pulse train on the Keithley 2612B and have run into a timeout error when attempting to print the readings from the two designated buffers. I created the buffers using the code below: Afterwards, I created the pulse train using an example adapted from the 2600B Reference Manual, page 3-49. However, when I run the following code: 
 I get the timeout error. Does anyone have any idea what is going wrong here? I was able to print fine from the buffers when I ran a continuous DC sweep, so I suspect there may be something in the trigger model I've written. Happy to share any code if needed.  | 
  
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
| 
         Hi @vuhoang8 Sorry for the delayed response. Do you still need help with this issue?  | 
  
Beta Was this translation helpful? Give feedback.
-
| 
         The issue has been resolved. In my script, I was setting attributes like so: However, to properly set them, you must set them as strings:  | 
  
Beta Was this translation helpful? Give feedback.
The issue has been resolved. In my script, I was setting attributes like so:
smua.trigger.source.stimulus = period_timer.EVENT_IDHowever, to properly set them, you must set them as strings:
smua.trigger.source.stimulus = "period_timer.EVENT_ID"