Author Topic: USB Logic Analyzers  (Read 32286 times)

0 Members and 1 Guest are viewing this topic.

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #25 on: October 26, 2017, 10:42:30 pm »
After reading this thread and looking at some videos, I decided to try the DSLogic Basic (my price range ~$70).

I purchased from eBay- it was listed as used(but new) from a seller that had an actual picture of the device (and the box which shows it was a Basic). Every other ebay seller of this device don't seem to know what they are selling, so you may end up getting an older model (I wanted the newest connectors). Anyway, I decided to be cheap (Basic model) and was hoping the 'upgrade' to the Plus model would be an easy fix if needed. It is a bit of a strange deal-  DreamSourceLab apparently makes these, but does not list these new models anywhere on their website although supported in their software.

The software for the Linux version has to be compiled, so I used another temp PC to do the build (my standard practice when something requires a ton of development tools to do the build- no need to screw up my main PC). The build went ok, and I transferred the files to my main pc. The app seems to work ok and looks like it will do the job.  The backup plan was to use sigrok/Pulsview. After playing around with this for a while, I'm thinking I should have had a logic analyzer a long time ago.

I'm not sure if I need anything other than the streaming mode, but I think the 256Mbit can easily be added so why not. Looking at the board, the only missing item is the 256Mbit sdram, and that part is $3 from Mouser. So, I can add the sdram, but am unsure what I should do on the software side.  The best way would be to get the pid changed to the Plus model, but I'm not sure how. The easy way I think would be to just recompile the software, changing the description structure of the Basic to match the Plus- then it will think its the Plus model (which, except for the pid, it will be). Any better ideas?
 

Offline Gabri74

  • Regular Contributor
  • *
  • Posts: 105
  • Country: it
Re: USB Logic Analyzers
« Reply #26 on: October 27, 2017, 08:04:46 am »
I've done exactly the same in the past few days :-D

Just yesterday I received my basic, compiled source code for Linux just for testing because my goal is to use it with sigrok/pulseview.
Obviously first thing I did was to open it. I took several pictures of the board to compare it with the pro which are on the sigrok wiki.

I've received edit permissions on the sigrok wiki and plan to add a page with information about the basic which is not listed.

I'm also planning on adding the sram to upgrade it to a plus, but I guess we need to modify the VID:PID data which are presumably stored in the EEPROM.
As soon as I'll have time I'm planning to dump the EEPROM and try to change VID:PID: this should suffice  to it be recognized as a Plus and to allow the correct
firmware to be uploaded.

As of today I was not able to use it with sigrok: I've extracted the FPGA firmware from the binary blob using those instructions on the wiki but neither sigrok-cli nor PulseView recognized it.
I think the support for the basic was added recently only in git, not in the stable versions tarballs (which I'm using for now).

I'll keep updating this thread with mi progress.

 

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #27 on: October 28, 2017, 05:35:10 pm »
Quote
So, I can add the sdram, but am unsure what I should do on the software side
After looking at the code (which is almost readable to me, in contrast to the build system), its looks like its far simpler than I was thinking.

Make backup copies of the DSLogicBasic.fw/.bin files, copy the DSLogicPlus.fw/.bin files to DSLogicBasic.fw/.bin files (overwrite)
Unplug device, plug back in, the Plus firmwares will be uploaded. Of course without the sdram, neither stream or buffer modes returns any data, but the device will show as a DSLogicPLus. It appears the pid only determines which firmwares to upload, and after that it no longer matters.

I'm not sure about sigrok/Pulseview, but I imagine the same will work.

« Last Edit: October 28, 2017, 05:37:59 pm by cv007 »
 

Offline cdev

  • Super Contributor
  • ***
  • !
  • Posts: 7350
  • Country: 00
Re: USB Logic Analyzers
« Reply #28 on: October 28, 2017, 06:34:31 pm »
Check out https://opentechlab.org.uk

There are a bunch of useful videos on low cost logic analyzers and using them with pulseview. There is some stuff on DSLogic devices. The author of pulseview is a fan of their hardware. In a YouTube video he discusses their LA.

https://opentechlab.org.uk/videos:009:notes

I'd like to get a logic analyzer for use with some retrocomputing projects that use a bus speed of 4 - 16 Mhz.
« Last Edit: October 28, 2017, 07:07:49 pm by cdev »
"What the large print giveth, the small print taketh away."
 

Offline Frddy

  • Newbie
  • Posts: 6
  • Country: nl
Re: USB Logic Analyzers
« Reply #29 on: October 28, 2017, 09:55:54 pm »
Hey ya'll.. So mine arrived today as well! It is the same as in the pictures, but is a basic model with no ram unfortunately. In spite of the fact that the ebay add mentions a buffer mode with 16x16.. Still not sure if I should file an ebay complaint or not.. Given I kind of expected this..

Anyway, looks like we're doing great working towards upgrading it to a Plus model! Obviously I want to do the same adding RAM. I did spot something now that I've actually got mine: the 'probes' are not the same as in the video. They're actually not a coax-style, but rather have 5 long wires to each probe per connector: 1 ground and 4 signal wires.. 

...
I'm not sure if I need anything other than the streaming mode, but I think the 256Mbit can easily be added so why not. Looking at the board, the only missing item is the 256Mbit sdram, and that part is $3 from Mouser. So, I can add the sdram, but am unsure what I should do on the software side.
...
Only $3 ? It'll cost me atleast three times that from Farnell :(

Quote
So, I can add the sdram, but am unsure what I should do on the software side
After looking at the code (which is almost readable to me, in contrast to the build system), its looks like its far simpler than I was thinking.

Make backup copies of the DSLogicBasic.fw/.bin files, copy the DSLogicPlus.fw/.bin files to DSLogicBasic.fw/.bin files (overwrite)
Unplug device, plug back in, the Plus firmwares will be uploaded. Of course without the sdram, neither stream or buffer modes returns any data, but the device will show as a DSLogicPLus. It appears the pid only determines which firmwares to upload, and after that it no longer matters.

I'm not sure about sigrok/Pulseview, but I imagine the same will work.
Hmm. This does not appear to work for me on Windows 10. When I remove the DSLogicBasic the device no longer initializes ,red led stays red. (Confirming that it uses the file) When I copy the DSLogicPlus as DSLogicBasic, it still shows up as "DSLogic Basic" in DSView.

Btw, what is the RAM actually used for ?
« Last Edit: October 28, 2017, 10:19:38 pm by Frddy »
 

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #30 on: October 28, 2017, 10:54:38 pm »
Quote
They're actually not a coax-style
I prefer this style.

Quote
Btw, what is the RAM actually used for ?
I'm not an expert, but basically-
if you want to capture at high speed, or higher speed with more channels, or some combo of that- at some point in there the usb connection can't move data fast enough. So, with buffer mode the capture takes place to the sdram which can handle the bandwidth of the moving data. When your samples are done (whatever number of samples you wanted, up to the limit of the sdram), it gets transferred to the PC. With the lower memory of the Basic, you just can't fit much in 16K (or whatever it is). With 256Mbit, you have a lot more storage space so you can capture more samples at the high rate you wanted. It also looks like if you want advanced triggers, you have to use the buffer.

It looks to me like streaming can handle most needs, but if not, you have the option to buffer. Which is why I think this LA is nice, you have both options.

Quote
This does not appear to work for me on Windows 10
I have Windows 10 on several PC's, I just tried- worked just like my Linux PC. Did you unplug the device after changing the 2 files?

I would also like to change the colors of DSView to match my KDE theme-
https://photos.app.goo.gl/GPkL10x10kqoqygN2
(DSView is kinda brownish)
I'm sure it can be done, just need to figure out what to change in the QT style files. Maybe it would be better to have the option to read the style from a file if available.
« Last Edit: October 28, 2017, 11:16:49 pm by cv007 »
 

Offline Frddy

  • Newbie
  • Posts: 6
  • Country: nl
Re: USB Logic Analyzers
« Reply #31 on: October 28, 2017, 11:39:04 pm »
I prefer this style.
Yeah but, weren't they 'coax style' mostly to prevent large inductive loops. I was a bit dissapointed when I found out.. Ah well, maybe it's not too bad.

Quote
I'm not an expert, but basically-
if you want to capture at high speed, or higher speed with more channels, or some combo of that- at some point in there the usb connection can't move data fast enough. So, with buffer mode the capture takes place to the sdram which can handle the bandwidth of the moving data. When your samples are done (whatever number of samples you wanted, up to the limit of the sdram), it gets transferred to the PC. With the lower memory of the Basic, you just can't fit much in 16K (or whatever it is). With 256Mbit, you have a lot more storage space so you can capture more samples at the high rate you wanted. It also looks like if you want advanced triggers, you have to use the buffer.

It looks to me like streaming can handle most needs, but if not, you have the option to buffer. Which is why I think this LA is nice, you have both options.
So I tried to use buffer mode a little bit, and as far as I've seen it still works well on my model.. Maybe it uses RLE and my test was too easy to compress.. Probably.. :p I was just wondering when exactly it's used. I would think always for the entire buffer, in buffer mode.. But 'buffer mode' was working for me just now..

Quote
I have Windows 10 on several PC's, I just tried- worked just like my Linux PC. Did you unplug the device after changing the 2 files?
Of course :) Maybe I'm too tired, will try again later.. Will also check if it works on my Mac.. Though I'm finding that the GUI doesn't really run smoothly on OSX.
 

Offline abraxa

  • Frequent Contributor
  • **
  • Posts: 377
  • Country: de
  • Sigrok associate
Re: USB Logic Analyzers
« Reply #32 on: October 29, 2017, 12:00:50 am »
I prefer this style.
Yeah but, weren't they 'coax style' mostly to prevent large inductive loops. I was a bit dissapointed when I found out.. Ah well, maybe it's not too bad.
From what I remember, the DSLogic had pretty bad signal integrity, partly due to the way their input cable harness was designed. I remember tests by a sigrok team member where the ringing caused additional signal edges, so yes, I would want the coax cables if I had a choice. As for you, I'd say it depends on the signals you commonly look at. Just keep in mind that when the signals look off, it may be because of this issue.
 

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #33 on: October 29, 2017, 04:19:36 pm »
Quote
I was just wondering when exactly it's used
Sorry I over-simplified, and responded with info you already knew. I understand your question now, and it is the same one I have. It seems just from playing around, the time will come when one wants to use the advanced trigger to capture a specific event that only the advanced trigger can handle (advanced trigger requires buffer mode). Along with capturing a specific event, it may be required to also see a time frame that is too large for the smaller buffer. With typical lower speed stuff, the advanced trigger may come into play long before the need for a the high sampling rate. That's my guess.

Quote
I would also like to change the colors of DSView to match my KDE theme-
It looks like QT apps can take a -stylesheet command line argument, and although it does accept the argument and seems to be happy, no changes show up. I think the setting of the stylesheet in the app (compiled into app as resource) happens after that, so will not work. There are also hard coded colors in some places, which the stylesheet will not apply to.

I grepped the files for the background color QColor(48, 47, 47, 255), and #302F2F, and replaced them with my new color (only 4 files needed changing). I recompiled.  It worked, but there are a few things that were darker versions of the background that I missed.  My previous post has a link to screenshots. I would probably like to change the signal area to a darker color to match something like the Dolphin file manager screenshot I have (instead of one background color everywhere).

I'm sure a simple change to the application startup where the stylesheet is loaded would work (check for external stylesheet, if none, load from internal resource). I'm not sure about the other hard coded colors, though- maybe could be added to the stylesheet somehow (I know very little about QT).


edit-
I just added a simple check in main.cpp where it loads the internal stylesheet, to simply check if one is already loaded (via command line). So now, I can pass a command line argument to DSView and change colors as needed via a style.qss file and icons.  I found a breeze qt stylesheet on gituhub, and used as my starting point. After some mods, I'm close to the KDE breeze theme. I still have a pixel overlap in the main trace area with the border, but its probably as close as I can get it (its the last picture in my screenshots link).
« Last Edit: October 30, 2017, 04:31:09 pm by cv007 »
 

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #34 on: November 05, 2017, 06:50:20 pm »
DSLogicBasic-

Soldered on a MT48LC16M16A2TG-6A:GTR ($2.33), copied the Plus fw/bin files to the Basic fw/bin files- works ok (no need to change pid).
https://photos.app.goo.gl/GPkL10x10kqoqygN2 (last picture shows screenshot with the Plus 'upgrade')

I'm not sure why, but I can't get the 200MHz/400MHz options to work, which I will never use (cannot select the channels 0-7/200MHz or channels 0-3/400MHz options).

So basically I now have usable 25/50/100MHz capture options. My expectations were not high, but I am liking this DSLogic device and has good bang for the buck (<$75 total).
 
The following users thanked this post: Gabri74, lfsing

Offline trevwhite

  • Frequent Contributor
  • **
  • Posts: 929
  • Country: gb
Re: USB Logic Analyzers
« Reply #35 on: November 05, 2017, 07:07:44 pm »
Sorry if this is a dumb question. Does streaming mode continuously capture and decode or do you have to sample a certain size of data and then decode after?

Thanks

Trev

 
The following users thanked this post: lfsing

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #36 on: November 05, 2017, 08:14:41 pm »
Its always a two step process- capture, display/decode.

1. Capture at specified sample rate for specified number of samples (while capturing- nothing displayed). The capture can be streaming directly to the PC, or can capture to internal device ram, then transfer to PC- either way is the same as far as the capture step is concerned.
2. Display (and optionally decode) captured data.

There is a 'Repetitive' mode, which captures/displays/repeat every n seconds, but the minimum rate is 1 second.

So, unlike a scope with a real time serial decoder for example, you cannot see real time events. Instead, you specify a trigger condition, or just grab a bunch of samples, and then look it over (and decode). I'm not sure if the real time decoding (of a scope) is a major advantage as you will want a record of it in any case (although a scope can also show analogue signals, which may be useful to see along with real time decoded protocol). The logic analyzer advantage is you are not limited to decoding the relatively few protocols that may be in the scope, and since you are capturing to a PC I imagine its much easier to deal with than trying to fiddle around with knobs/buttons/menus on a 7" display looking at a 30 second capture.

« Last Edit: November 06, 2017, 05:31:33 am by cv007 »
 

Offline bson

  • Supporter
  • ****
  • Posts: 2265
  • Country: us
Re: USB Logic Analyzers
« Reply #37 on: November 06, 2017, 09:50:02 pm »
24MHz is very slow and can't provide timing precision past 1/24M = ~40ns.  This makes it useless for anything but the most elementary tasks, mainly limiting it to sniffing low speed buses in already working products.  For things even like looking at external SRAM bus timing and why it fails past some remarkably low clock - practically useless.  All it can tell you is that it fails, maybe, if you happen to split two racing edges, but you probably knew that already before even attaching a probe...  Even for HC logic with its modest transition times, at a sluggish 10MHz you really want at least a 100MHz sampling rate.  Most modern uC's and logic interfaces operate closer to LVC though, so forget debugging with a 24MHz sampling rate; for these even a 500MHz time base is quite limiting.  Of course, if it were sophisticated enough to run a 1 or 4GHz timer and timestamp events at up to 24MHz that would be a different matter altogether, so the key here is the slow time base, not the sampling rate per se.

I'd never buy one of these clones.  What if someone sold your products for manufacturing cost, that you spent $10M on for R&D, labeling it with your trademarked product name and pretending to be you?  This would put you out of business quickly, because they don't have anything to recoup, and they're not spending another $10M on your next product - they will just clone that, too.  What if I were to clone and sell Dave's uCurrent for $2, indistinguishable from the original, effectively bringing his sales to approximately $0?  Do you think that's okay?  If so, you really need to recalibrate your moral compass.

Why aren't they making their own equally simply but independently designed product?  I'll tell you why: because that would require hiring an engineer or two, and engineers cost money; they need instruments and facilities, and even though any half decent engineer can crank out a design for this since it's such a simple problem - it's still work, will take time (and hence cost payroll), require an initial capital investment in facilities and equipment, budgeting and hence engineering management, prototype runs, debugging, physical fitting and case design - and then software support even if it consists only of a trivial Windows driver based on an MSDN template, and adding support to Sigrok.  (Unless you can find someone to volunteer to do it for free for your commercial product that nobody has even seen yet.)  The reason they don't do it is because all of these activities cost money, and the moment they actually have to start spending on product R&D it becomes impossible to sell their product for $6.
 

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #38 on: November 09, 2017, 07:24:41 pm »
Quote
I'm not sure why, but I can't get the 200MHz/400MHz options to work
It took a while to figure out as I always end up going in circles looking at the source code.
The code to check the channel group is using the radio button text to determine which button was pressed, which then gets compared back to the array of text the radiobutton text originated from, and then gets its index into the array via a string compare. It turns out somewhere in the black hole of QT, an ampersand is added to the radiobutton text which causes any string compare to fail, so no match and no ability to change the option. The ampersand is for a shortcut key, but I'm not sure why QT is adding one when the text used to create the radio buttons have no ampersands. In any case, removing any '&' found in the string before the string compare fixes the problem.

 

Offline phil from seattle

  • Super Contributor
  • ***
  • Posts: 1029
  • Country: us
Re: USB Logic Analyzers
« Reply #39 on: November 09, 2017, 11:12:36 pm »
[Nausea]Could be that the & is for windows - it's used to denote the "accelerator" key for keyboard use of the menu system.[\Nausea]  It should be stripped for compares.
 

Offline cv007

  • Frequent Contributor
  • **
  • Posts: 822
Re: USB Logic Analyzers
« Reply #40 on: November 10, 2017, 02:03:55 am »
Quote
but I'm not sure why QT is adding one when the text used to create the radio buttons have no ampersands
It appears KDE is injecting the ampersand into QT apps. How very thoughtful of them :( 
(I'm sure they are trying to be helpful to the 'careless' -in their minds- QT app authors who don't have shortcut keys to every button/widget/menu, but they leave a trail of broken apps when they do these things)
« Last Edit: November 12, 2017, 05:27:46 pm by cv007 »
 

Offline DC1MC

  • Super Contributor
  • ***
  • Posts: 1882
  • Country: de
Re: USB Logic Analyzers
« Reply #41 on: December 21, 2017, 06:06:05 am »
Hello all, found this topic while being desperate that I've lost an Intronix LogicPort 36 channels on fleabay  |O

Can someone recommend a LA with similar features, available on short notice in Germany (that is before everything shuts down for xmas/ny) on a budget no higher than 250EUR ? If I can't find anything I have to cancel a very nice project and I'll hate it.

Or if somebody can loan one to me, please PM

DC1MC
 

Offline hli

  • Frequent Contributor
  • **
  • Posts: 255
  • Country: de
Re: USB Logic Analyzers
« Reply #42 on: December 21, 2017, 08:57:57 pm »
I can recommend the Digilent Digital Discovery (up to 800Msps, up to 32 channels, but not both). Nice software, with extensive triggering capabilities. But I doubt that you will get it fast enough for christmas.
 

Offline alm

  • Super Contributor
  • ***
  • Posts: 2840
  • Country: 00
Re: USB Logic Analyzers
« Reply #43 on: December 23, 2017, 10:04:25 am »
Hello all, found this topic while being desperate that I've lost an Intronix LogicPort 36 channels on fleabay  |O

Can someone recommend a LA with similar features, available on short notice in Germany (that is before everything shuts down for xmas/ny) on a budget no higher than 250EUR ? If I can't find anything I have to cancel a very nice project and I'll hate it.
It's hard to give an intelligent answer to this without knowing more than "similar features to the LogicPort". If it is about channel count, there may be some old HP logic analyzers (which are slightly bigger ;) ) available with 32+ channels locally for < $250, like the 1670 series mentioned in this thread. Some will have much deeper memory and more advanced triggering. If you don't need as many channels but want serial protocol decoding, there are options like the DSLogic or possibly a used Saleae 16-channel model.

Offline DC1MC

  • Super Contributor
  • ***
  • Posts: 1882
  • Country: de
Re: USB Logic Analyzers
« Reply #44 on: December 23, 2017, 10:09:54 pm »
Hello all, found this topic while being desperate that I've lost an Intronix LogicPort 36 channels on fleabay  |O

Can someone recommend a LA with similar features, available on short notice in Germany (that is before everything shuts down for xmas/ny) on a budget no higher than 250EUR ? If I can't find anything I have to cancel a very nice project and I'll hate it.
It's hard to give an intelligent answer to this without knowing more than "similar features to the LogicPort". If it is about channel count, there may be some old HP logic analyzers (which are slightly bigger ;) ) available with 32+ channels locally for < $250, like the 1670 series mentioned in this thread. Some will have much deeper memory and more advanced triggering. If you don't need as many channels but want serial protocol decoding, there are options like the DSLogic or possibly a used Saleae 16-channel model.

What intelligent answers are, there is nothing comparable in this price range, they either have a miserable to nonexistent AFE,  an advertised speed that's valid only on 1/8 of the channels in sunny, but not very humid days and only with this "special" high speed adapter (looking at you Digilent) because our AFE is crap, and so on, the person that got my Intronix on fleabay, knew what was doing, I was naive.

True about the old HPs and even there is this Phillips beauty available:

https://www.ebay-kleinanzeigen.de/s-anzeige/philips-logic-analyser-logikanalysator-pm3585-61-200mhz/775106390-168-7267

Unfortunately, I need lots of fast channels, the device should not break the desk and/or the floor under it ;) ,and if possible, should not have noisy ventilators (I have a small apartment and and my better half becomes grumpy when my R&S generator, the TDS840 and the transceiver are all running together, not to mention that stresses my cat) and not emit CRT X-Ray, I've stayed over 35yrs with my face in this stuff and so far I've cheated cancer, I don't want to push it.

OK then, because we have here such an inquisitive gang and engineers like to solve problems, also not forgetting the questions: "but what are you trying to with it that can't be done with an 8 ch/2MHz Cypress, eh, eh ?!?!, I can decode everything with a Salae and Arduino and some Python scripts, even the cryptic and complex 7-segment display protocol, what could you have that can't be done already with them, this it's not possible, it doesn't exist, so, eh, eh ??", so here we go:

- I fully don't need or care of any I2C, SPI, CAN bus, sync or async serial buses, for this my scope does an excellent job.
- I have to decode the protocol on some high-speed proprietary buses between some modules of a device, the bus it's strangely 19bits (?) plus clock and some control signals.
- I need to capture a bit stream load in a most strange mixture of parallel-serial single ended bus that I've ever had the unhappiness to see.
- I want to decode an LCD panel drive sequence, here a good AFE with variable and under zero logic level is mandatory.
- I need to read some external storage device that holds some important irreplaceable calibration data and other constants and it has a lot of pins.
- In the end, I wanted to make nice Christmas/New Year present to the community here (and me as well) by decoding, documenting and opening the specifications of the FY6600. This project it's now 98.5% canceled, barring some X-mas wonder like: "I live in a neighbor city/village, I have an Intronix for sale, come and get it...".
Well, THIS task could be indeed done with whatever arduino, Salae or other sinoschrott available, because I doubt logic stuff there on the FP to signal board gets over 10KHz clock, but if I do unpaid work, I want to do it in a way that pleases me, "not whatever does the job", I'm not the one to hit the screw with a hammer because I don't have a screwdriver at hand and I must do it NOW.

 So if you still have suggestions, knowing what I want to do with the Intronix, please say them, I will at least use them to convince some Intronix owners that they don't need it.


 Cheers,
 DC1MC
 

Offline 0xdeadbeef

  • Super Contributor
  • ***
  • Posts: 1570
  • Country: de
Re: USB Logic Analyzers
« Reply #45 on: December 26, 2017, 05:29:29 pm »
If you're looking for an Intronix LogicPort in Germany, it would have been more promising to ask in the "mikrocontroller" forum.

Anyway, fully configurable trigger thresholds, specifically negative ones, are nothing to be found in most "cheap" Logic Analyzer.
The Acute TravelLogic LAs seems to have this (in addition to complex triggers and deep memory) but they are a bit outside your expected price range.

However there are devices like the Hantek  LA5034 that sound suspiciously like the Intronix (including the very limited memory).
The LA5034 is even available at Amazon.

There were also obvious Intronix clones available on Amazon/eBay/BangGood which were advertised to be compatible to the Intronix software (i.e. search for "500mhz fpga logic analyzer").
I guess though the Hantek thing is somewhat more legit and uses its own software. Which however could be a bad thing.
It was discussed here once but there wasn't much useful information in this thread and the pictures are gone now.
Trying is the first step towards failure - Homer J. Simpson
 

Offline lfsing

  • Newbie
  • Posts: 1
  • Country: my
Re: USB Logic Analyzers
« Reply #46 on: January 14, 2019, 02:20:54 pm »
DSLogicBasic-

Soldered on a MT48LC16M16A2TG-6A:GTR ($2.33)

Upgrade DslogicBasic to DslogicPlus !!!!!

I did the above  thing, plus reprogramming the SEEP 24LC128 .
Take out the SEEP , Read and its data to file. edit this files , search for exists of data "0E2A2100".
Modify this data to "0E2A2000". and save file.   Write this data file to SEEP.
It works................Most importantly, no need to fool around with the firmware files..

 
« Last Edit: January 14, 2019, 02:44:06 pm by lfsing »
 
The following users thanked this post: Microcheap

Offline Carrington

  • Super Contributor
  • ***
  • Posts: 1202
  • Country: es
Re: USB Logic Analyzers
« Reply #47 on: January 14, 2019, 02:47:05 pm »
What do you think about this one?
https://www.thelabeshop.com/Analyzers/Protocol-Analyzers/Multi-Protocol/Acute-TravelBus-TB1016E/

It has HW triggers for: DALI, HID over I2C, I2C, I2S, LIN, MDIO, PMBus, RS232, SMBus, SPI, USB1.1.
And it can decode a ton of protocols, and capture at 200Msps (real-time) directly to PC memory (USB 3.0).
With to modes: Protocol Analyzer Mode and Logic Analyzer.

My English can be pretty bad, so suggestions are welcome. ;)
Space Weather.
Lightning & Thunderstorms in Real Time.
 

Offline lfldp

  • Regular Contributor
  • *
  • Posts: 103
  • Country: pl
Re: USB Logic Analyzers
« Reply #48 on: July 15, 2019, 08:52:49 pm »
hello
i found wrong informations in this topic , have also one question

this informations are correct:

pro version:

up to 100mhz acceptable bandwitch 256mbit memory and up to 400ms/s buffer

old version (first one which i already have):

up to 50mhz acceptable bandwitch 64mbit memory and up to 200ms/s buffer

so  previous infromations are incorrect

i have problem with dslogic oldest version (the problem with original cables noises) im getting junk while i tryin sniff spi communication , does maybe exist another (better) cables to buy for use with it ?

thanks
 

Offline mindcrime

  • Supporter
  • ****
  • Posts: 394
  • Country: us
Re: USB Logic Analyzers
« Reply #49 on: July 16, 2019, 06:48:01 pm »
I'd like to get a logic analyzer for use with some retrocomputing projects that use a bus speed of 4 - 16 Mhz.

Scott

Heh. This is where I'm at as well. Mostly interested in retro-computing projects using 8-bit processors like the Z80, etc.  In the end, I decided to buy a 136 channel HP 1660A logic analyzer.  It's way overkill for what I'm doing, but, well.. TEA syndrome and all that.  I also have a Zeroplus LAP-C 16-channel USB device, and a Sparkfun Bus Pirate, so I figure I'm covered one way or another.

The Zeroplus works with Sigrok, which is the main reason I went with that. (I'm something of an ideologue for F/OSS).

Anyway, I'll just say, be wary of Ebay... TEA is no joke.   ??? :-[ ;D  I already don't know where the heck I'm going to put this 1660A when it comes in.  I'll probably have to throw my TV out to make room for it...

« Last Edit: July 16, 2019, 06:49:42 pm by mindcrime »
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf