A DIY Nine Channel Digital Scope

Have you ever found yourself in the need of a nine channel scope, when all you had was an FPGA evaluation board? Do not despair, [Miguel Angel] has you covered. While trying to make sense of the inner workings of a RAM controller core, he realized that he needed to capture a lot of signals in parallel and whipped up this 9-channel digital oscilloscope.

The scope is remote-controlled via a JavaScript application, and over Ethernet. Graphical output is provided as a VGA signal at full HD, so it is easy to see what is going on. Downloading sampled data to the controlling computer for analysis is in the works. [Miguel] runs his implementation on an Arty A7 development board which is currently available for around a hundred dollars, but the design is transferable to other platforms. The code and some documentation is available on GitHub and there is a demo video after the break.

Continue reading “A DIY Nine Channel Digital Scope”

Wireless Oscilloscope Review

[Martin Rowe] over at EDN recently put a $200 wireless oscilloscope to the test. The Aeroscope 100A is a single channel scope in a probe body that communicates back to an Apple smartphone or tablet via Bluetooth LE. You can see the video from the post, below.

The original prototype of the device had a high bandwidth, but the production model only manages to have a 20 MHz bandwidth at 100 megasamples per second: nothing earth-shattering.

Continue reading “Wireless Oscilloscope Review”

FPGA Rescues Scope From The Dumpster

I’m always on the lookout for a quality addition to my lab that would respect my strict budget. Recently, I’ve found myself pushing the Hertz barrier with every other project I do and hence desperately wanted a high bandwidth scope. Unfortunately, only recently have 70 MHz to 100 MHz become really affordable, whilst a new quad channel oscilloscope in the 500 MHz to 1 GHz range still costs a fortune to acquire. My only option was to find an absolute miracle in the form of an old high bandwidth scope.

It seemed the Gods of Hand Me Down electronics were smiling upon me when I found this dumpster destined HP 54542C. It appeared to be in fairy good shape and was the Top Dog in its day. But something had to be broken right? Sure enough, the screen was clearly faulty and illegible. Want to know how I fixed it? Four letters: FPGA.

Continue reading “FPGA Rescues Scope From The Dumpster”

Keysight’s New 1000-X Scopes Get Double Hertz

It’s not every day that we have the pleasure of being excited about a new oscilloscope in the market; not only is it affordable but also produced by one of the industry’s big players. To top it all off,  all the marketing is carefully crafted towards students and hackers.

Keysight recently released a new line of oscilloscopes called the 1000X series that starts at $448. It’s an entry level, two-channel scope having (officially) 50 MHz, 70 MHz and 100 MHz versions to choose from. It hosts their standard technology such as Megazoom, but also some interesting, albeit optional extra quirks such as an in-built signal generator and a simple network analyser with gain and phase plot capability.

The release of this scope and the marketing strategy employed by Keysight feels like they’re late to this entry-level party but still want to get in on the fun. In the words of Keysight we should all immediately “Scrap the toys, get a real oscilloscope” . The persuasion has gone a step further; Keysight has kindly facilitated many giveaways and generated hype from our favorite EE YouTuber’sIf anything, this certainly heats up the entry level scope market, so we at Hackaday welcome it with open arms.

All this fuss about affordable yet capable entry level scopes started with Rigol. Here was a company that actually bothered to genuinely market a scope to the masses at a reasonable price. At the time, the norm for such scopes was to be marketed solely to schools and universities by large teams of suits. Winning the hearts (and money) of any hackers along the way was merely collateral damage.  The scope that considerably changed this was the Rigol DS1052e, the predecessor of the DS1054z which is now considered the benchmark for all entry level scopes. If Keysight is to entice us to scrap the toys, the 1000X series must spar with the community’s current sweetheart.

It is still early days for this scope, but [Dave Jones] already received one and successfully unlocked the shipped bandwidth lock. He has even unearthed an undocumented 200 MHz bandwidth mode by hacking the main processor board! Unsurprisingly, the analog front end is consistent across all the models with the sampling rate and bandwidth being set, rather old-fashionedly, by a few resistors on the main processor board.

Continue reading “Keysight’s New 1000-X Scopes Get Double Hertz”

Hybrid Raspberry Pi + PIC32 = Oscilloscope And Function Generator

The PicBerry is a student final project by [Advitya], [Jeff], and [Danna] that takes a hybrid approach to creating a portable (and affordable) combination digital oscilloscope and function generator. It’s based on the Raspberry Pi, features an intuitive Python GUI, and can generate and measure simultaneously.

But wait! The Raspberry Pi is a capable little Linux machine, but meeting real-time deadlines isn’t its strong suit. That’s where the hybrid approach comes in. The Pi takes care of the user interface and other goodies, and a PIC32 over SPI is used for 1 MHz sampling and running a DAC at 500 kHz. The idea of combining them into PicBerry is to get the best of both worlds, with the Pi and PIC32 each doing what they are best at. The readings are sent in batches from the PIC32 to the Pi, where the plot is updated every 30 ms so that user does not perceive any visible lag.

The project documentation notes that improvements can be made, the speeds are a far cry from regular bench equipment, and the software lacks some typical features such as triggering, but overall not bad at all for under $50 of parts. In fact, there are hardly any components at all beyond the Raspberry Pi, the PIC32, and a MCP4822 digital-to-analog converter. A short demo video is embedded below.

Continue reading “Hybrid Raspberry Pi + PIC32 = Oscilloscope And Function Generator”