-
MSO44 pct of time spent in tri-state
Please see attached pic, chan 1. <br> Is there a way for me to get how much time the clk spends in tri-state (marked red in pic)? <br> For instance, I want to sum up all the time it spends from say 1.4 to 1.6 V and divide it by the total duration which in this case should be > 50%.  -
RE: MSO44 scope issue getting average freq
The badge was yellow so chan1. <br> I have set the abs levels and it definitely helped. I now see expected freq stats. <br> One more question about the low level. <br> See attached pic. you can see the min of the trace is 233 mV which is quite a bit higher than the "low" that i have set (-1 mV) so how come it's still able to give me accurate frequency stats? <br> What I'm expecting is that the freq badge should give me empty value until I raise the "low" of the abs ref level to around 250 mV (higher than 233 mV so it triggers). <br> Doesn't the waveform have to cross "low" AND "mid" AND "high" to be counted as one cycle? <br> I'm using AND in the sense of logic "and" meaning that all 3 have to be satisfied at the same time.  -
MSO44 scope issue getting average freq
Please see attached pic "multi cycle". The pulses bounce around a bit but the periods center around 500 us, which should translate to 2 kHz avg but the badge gives me 20+MHz average frequency. <br> I have also included a pic zooming in on one pulse. <br> How do I configure the scope to give me more accurate stats?  -
positive pulse width custom ref level scpi
please see attached pic (chan1) for a series of (filtered) clk signals. <br> I want to be able to use scpi to tell the scope to give me the positive pulse width stats of:<br> 1. using custom reference levels of 90% to 90% (marked H in the pic) and <br> 2. using custom reference levels of 10% to 10% (marked L in the pic) <br> <br> what i'm trying to do is to see if the clk is being tri-stated in the samples by comparing the max of 10% to 10% and 90% to 90%. <br> you can see from the pic the the one being tri-stated will have bigger positive pulse width only from 10% to 10% not 90% to 90% -
MSO44 scope SCPI cmds add label questions
1. How do I use SCPI to add a label to channels? say "PWM" to chan1 and "SW" to ch2? <br> 2. How do I use SCPI to limit a chan (say ch2) to BW of say 20 MHz? -
RE: MSO44 scope SCPI phase meas questions
my question is are these below cmds correct? <br> if not, what should they be? <br> <br> <br> MEASUrement:MEAS1:SOUrce1 CH4D_0<br> MEASUrement:MEAS1:SOUrce2 CH4D_1 -
RE: protocol analysis for MSOs
Looks like I do have SVID sub but I'm not sure of the difference between the installed and upgrade one. <br> Please see pic attached. -
protocol analysis for MSOs
Where can I purchase the license of protocol analysis for my MSO44 4-BW-500? <br> How do I know if it already has it? -
RE: SCPI query issue
I tried adding CLS in the init but I'm still having issues.def __init__(self, addr): self.addr = addr self.rm = pyvisa.ResourceManager() # rm.list_resources() self.inst = self.rm.open_resource(self.addr) self.write("*CLS") print(self.query("*IDN?")) self.write("*CLS")
Do you see anything wrong with the below function? (I keep getting timeout errors at random lines in the below funciton. )
If not, can you please share a scope shot retrieving routine that's robust?def get_screenshot(self): now = str(datetime.datetime.now()).replace(":", "-") # print(now) self.write(f'SAVE:IMAGe \"C:/{now}.png\"') self.query("*OPC?") self.write(f'FILESystem:READFile \"C:/{now}.png\"') imgData = self.inst.read_raw(1920 * 1080) cwd = os.getcwd() full_path = cwd + "\\scope screenshots" Path(full_path).mkdir(exist_ok=True) filepath = full_path + "\\" + now + ".jpg" file = open(filepath, "wb") file.write(imgData) file.close() self.write(f'FILESystem:DELEte \"C:/{now}.png\"') return filepath
-
RE: use MSO digital channels to measure phase delay in degrees.
How is the accuracy of digital channels compared to analog channels. I know it throws out quite a bit of information. It's more like a threshold lo/hi. Do you think using this method is detailed enough if I'm interested in phase delay down to 0.1 degree?