Author Topic: Rigol DS1054 is a champion  (Read 12464 times)

0 Members and 1 Guest are viewing this topic.

Offline ebclrTopic starter

  • Super Contributor
  • ***
  • Posts: 2328
  • Country: 00
Rigol DS1054 is a champion
« on: June 06, 2017, 11:21:19 pm »
I'm playing with ESP32 SPI mode with this program

#define CSPIN  5
#include <SPI.h>
unsigned char Icount = 0 ;
void setup() {
  pinMode( CSPIN, OUTPUT);
  SPI.begin(18, 19, 23, 5); // sck, miso, mosi, ss (ss can be any GPIO)
  SPI.setFrequency( 10000000 );
}

void loop() {
delay(10);
digitalWrite( CSPIN, HIGH);
SPI.transfer(Icount);
digitalWrite( CSPIN, LOW);
Icount++;
}

This program was  set to SPI Clock for 30Mhzm 10Mhz, 5Mhz and 1 Mhz

Then I put my Rigol DS1054Z to check the signal expecting to see a crap unuseful picture, But for my surprise, the pictures are very nice and readable, I would love to see other scopes on the same price range showing the same waveform
</Br></Br>
</Br>
</Br>

This Rigols instrument is a beast,



 

Offline technogeeky

  • Frequent Contributor
  • **
  • Posts: 555
  • Country: us
  • Older New "New Player" Player Playa'
Re: Rigol DS1054 is a champion
« Reply #1 on: June 07, 2017, 12:12:07 am »
I agree with you, though I don't know why you expected a "crap unuseful picture". The 3db bandwidth of the scope is well known to be in the 130MHz+ range, so a 30 MHz signal should be no problemo!

Cheers!
 

Offline Dwaine

  • Frequent Contributor
  • **
  • Posts: 299
  • Country: ca
Re: Rigol DS1054 is a champion
« Reply #2 on: June 07, 2017, 12:54:26 am »
I have a spare Raspberry PI and was looking for a Python script that simulates a demo board for test signals on a scope.  I looked and did not find any.  I was actually surprised that there were none.

I could write a nice little Python program to simulate a Rigol test board,. I was just being lazy and thought I would grab one off the internet.  Was not so easy.

I also enjoy my Rigol scope.
 

Offline CustomEngineerer

  • Frequent Contributor
  • **
  • Posts: 463
  • Country: us
 
The following users thanked this post: Dwaine

Online JPortici

  • Super Contributor
  • ***
  • Posts: 3452
  • Country: it
Re: Rigol DS1054 is a champion
« Reply #4 on: June 07, 2017, 06:09:38 am »
i don't get it, what did you expect? If anything you showed that you can probe correctly
« Last Edit: June 07, 2017, 06:13:28 am by JPortici »
 
The following users thanked this post: Fungus

Offline ebclrTopic starter

  • Super Contributor
  • ***
  • Posts: 2328
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #5 on: June 07, 2017, 08:00:23 am »
Pulses are well known for the huge amount of harmonics they generate, and a 10 Mhz pulse train on a 50 Mhz scope, show with that nice shape ( ok is a little slow rise time ) but is totally valid for a test or even decode by eyes.

If I put this same signal on my 100Mhz Owon SDS2702 will be much worse than that I can't even trigger the signal.

Basically, I'm  happy with my 399 USD scope, I don't need to expand 1500 USD or more, do work with microprocessor interfaces even pushing SPI to 10 Mhz. 

But I still desire a Tek MSO/DPO4000B but have no extra cash to expand, for my purpose is a luxury but maybe sometime I will do an emotional order

Will be a nice thing to see the same signal on other scopes, even the big boy's ones,
« Last Edit: June 07, 2017, 08:03:43 am by ebclr »
 

Online JPortici

  • Super Contributor
  • ***
  • Posts: 3452
  • Country: it
Re: Rigol DS1054 is a champion
« Reply #6 on: June 07, 2017, 08:32:18 am »
Quote
If I put this same signal on my 100Mhz Owon SDS2702 will be much worse than that I can't even trigger the signal.
pics? i find that hard to believe
 

Offline Fungus

  • Super Contributor
  • ***
  • Posts: 16561
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #7 on: June 07, 2017, 08:40:01 am »
Yep, the (hacked) DS1054Z is an awful lot of 'scope for $400.

 

Offline tautech

  • Super Contributor
  • ***
  • Posts: 28141
  • Country: nz
  • Taupaki Technologies Ltd. Siglent Distributor NZ.
    • Taupaki Technologies Ltd.
Re: Rigol DS1054 is a champion
« Reply #8 on: June 07, 2017, 08:41:14 am »
Quote
If I put this same signal on my 100Mhz Owon SDS2702 will be much worse than that I can't even trigger the signal.
pics? i find that hard to believe
A bit of Holdoff and a falling edge trigger and it will trigger better than in the screenshots in the OP.
Avid Rabid Hobbyist
Siglent Youtube channel: https://www.youtube.com/@SiglentVideo/videos
 

Offline rstofer

  • Super Contributor
  • ***
  • Posts: 9886
  • Country: us
Re: Rigol DS1054 is a champion
« Reply #9 on: June 07, 2017, 05:50:16 pm »
Quote
If I put this same signal on my 100Mhz Owon SDS2702 will be much worse than that I can't even trigger the signal.
pics? i find that hard to believe
A bit of Holdoff and a falling edge trigger and it will trigger better than in the screenshots in the OP.

Even just Single Shot would have helped.  A little decoding would have been nice.
 

Offline Dwaine

  • Frequent Contributor
  • **
  • Posts: 299
  • Country: ca
Re: Rigol DS1054 is a champion
« Reply #10 on: June 07, 2017, 05:51:58 pm »
Thanks.   Reading it now.
 

Offline nctnico

  • Super Contributor
  • ***
  • Posts: 26755
  • Country: nl
    • NCT Developments
Re: Rigol DS1054 is a champion
« Reply #11 on: June 07, 2017, 05:53:40 pm »
Pulses are well known for the huge amount of harmonics they generate, and a 10 Mhz pulse train on a 50 Mhz scope, show with that nice shape ( ok is a little slow rise time ) but is totally valid for a test or even decode by eyes.

If I put this same signal on my 100Mhz Owon SDS2702 will be much worse than that I can't even trigger the signal.
Sounds more like operator error than a problem in the oscilloscope   >:D
There are small lies, big lies and then there is what is on the screen of your oscilloscope.
 

Offline ebclrTopic starter

  • Super Contributor
  • ***
  • Posts: 2328
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #12 on: June 08, 2017, 04:14:17 am »
"Even just Single Shot would have helped"

The SPI contour is running, and you can watch dynamically the bit's changing on screen, this will never happen on single shot
 

Offline newbrain

  • Super Contributor
  • ***
  • Posts: 1714
  • Country: se
Re: Rigol DS1054 is a champion
« Reply #13 on: June 08, 2017, 05:25:14 am »
Quote
This program was  set to SPI Clock for 30Mhzm 10Mhz, 5Mhz and 1 Mhz
The last screenshot looks like it's still at 10MHz, I'm curious about the actual behaviour at 30MHz.
I might try when I'm back home.
Nandemo wa shiranai wa yo, shitteru koto dake.
 

Offline ebclrTopic starter

  • Super Contributor
  • ***
  • Posts: 2328
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #14 on: June 08, 2017, 06:37:32 am »
Here the image you asked for

Software runs on this hardware with  USB power




« Last Edit: June 08, 2017, 06:41:46 am by ebclr »
 
The following users thanked this post: newbrain

Offline Rerouter

  • Super Contributor
  • ***
  • Posts: 4694
  • Country: au
  • Question Everything... Except This Statement
Re: Rigol DS1054 is a champion
« Reply #15 on: June 08, 2017, 07:24:06 am »
As your voltage is going below ground, your suffering from lead inductance, try the spring ground tip for that last one, i expect some resonably sharp edges

Personally i am a little biased in wanting to see how well it can go as a current project of mine will likely need to probe 48MHz spi, possibly up to 84MHz and things in that frequency ballpark. (Dont yet have a dso)
 

Offline ebclrTopic starter

  • Super Contributor
  • ***
  • Posts: 2328
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #16 on: June 08, 2017, 07:50:56 am »
Still on regular probe but with a more decent ground path. I lost my spring ground somewhere


 
The following users thanked this post: Rerouter

Offline TK

  • Super Contributor
  • ***
  • Posts: 1722
  • Country: us
  • I am a Systems Analyst who plays with Electronics
Re: Rigol DS1054 is a champion
« Reply #17 on: June 09, 2017, 06:49:30 pm »
Waiting for my ESP32 Thing card to test on my EDUX1002G (modded to DSOX), micsig TO1104 and Agilent 54622D
 
The following users thanked this post: ebclr

Offline TK

  • Super Contributor
  • ***
  • Posts: 1722
  • Country: us
  • I am a Systems Analyst who plays with Electronics
Re: Rigol DS1054 is a champion
« Reply #18 on: June 16, 2017, 10:25:44 pm »
MICSIG TO1104 100MHz 1GSa/s 4-channel Tablet scope.  I added one extra test with SPI @ 40MHz







« Last Edit: June 16, 2017, 10:28:05 pm by TK »
 

Offline TK

  • Super Contributor
  • ***
  • Posts: 1722
  • Country: us
  • I am a Systems Analyst who plays with Electronics
Re: Rigol DS1054 is a champion
« Reply #19 on: June 16, 2017, 10:29:51 pm »
Keysight EDUX1002G modded to DSOX1102G.  2GSa/s 100MHz 2+1 channel.  Using extra digital channel to trigger on SCK (SPI clock).







« Last Edit: June 16, 2017, 10:31:50 pm by TK »
 

Offline Fungus

  • Super Contributor
  • ***
  • Posts: 16561
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #20 on: June 16, 2017, 10:47:02 pm »
Keysight EDUX1002G modded to DSOX1102G.  2GSa/s 100MHz 2+1 channel.  Using extra digital channel to trigger on SCK (SPI clock).

It would it nice to see the clock on an analog channel as well?  :popcorn:

What's on channel 1? Is that just crosstalk?
 

Offline Rerouter

  • Super Contributor
  • ***
  • Posts: 4694
  • Country: au
  • Question Everything... Except This Statement
Re: Rigol DS1054 is a champion
« Reply #21 on: June 16, 2017, 10:47:57 pm »
I'm guessing all the ringing is just from the probing method used? I'd be a little concerned seeing 0.5V of noise on a 3.3V signal.

Still glad to see that even with a high sampling rate, analog bandwidth will still bite me in the backside.
 

Offline Fungus

  • Super Contributor
  • ***
  • Posts: 16561
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #22 on: June 16, 2017, 10:52:58 pm »
I'm guessing all the ringing is just from the probing method used?

Yep. Don't try to infer anything from the ringing when you're using ordinary probes.

 

Offline TK

  • Super Contributor
  • ***
  • Posts: 1722
  • Country: us
  • I am a Systems Analyst who plays with Electronics
Re: Rigol DS1054 is a champion
« Reply #23 on: June 16, 2017, 10:55:06 pm »
Keysight EDUX1002G modded to DSOX1102G.  2GSa/s 100MHz 2+1 channel.  Using extra digital channel to trigger on SCK (SPI clock).

It would it nice to see the clock on an analog channel as well?  :popcorn:

What's on channel 1? Is that just crosstalk?
Channel 1 is MISO (there is no Slave device connected to the ESP32 board who is acting as SPI Master)
 

Offline Fungus

  • Super Contributor
  • ***
  • Posts: 16561
  • Country: 00
Re: Rigol DS1054 is a champion
« Reply #24 on: June 16, 2017, 11:02:37 pm »
What's on channel 1? Is that just crosstalk?
Channel 1 is MISO (there is no Slave device connected to the ESP32 board who is acting as SPI Master)

Ok, so it's probably just crosstalk/coupling inside the ESP32.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf