Author Topic: Hantek 6022BE 20MHz USB DSO  (Read 852372 times)

0 Members and 5 Guests are viewing this topic.

Offline Matchless

  • Regular Contributor
  • *
  • Posts: 120
  • Country: za
Re: Hantek 6022BE 20MHz USB DSO
« Reply #625 on: July 05, 2014, 10:02:44 am »
Sorry for chiming in but would RichardK's software also work with the Hantek 6022BL?
Thank you.

I think not as it is at the moment. I do not have a 6022BL to test on, but I downloaded the 6022BL software and installed on my laptop and connected the 6022BE DSO. It opens a window with 2 icons. One for the scope and the other for the function generator.  Clicking the scope icon opens up Version 1.0.4, but it does not find the device. I think there may be differences in the firmware and in the software. RichardK is the guru and could comment on this, but I think that Open6022BE may need to be adapted to do this.
Regards
Matchless
 

Offline SoloTek

  • Newbie
  • Posts: 2
Re: Hantek 6022BE 20MHz USB DSO
« Reply #626 on: July 07, 2014, 05:24:43 pm »
Hello everybody, I stumbled over this discussion, also because I was looking for the difference between BE and BL. I just ordered the BE, since I got the impression that a BL is actually 2 devices in one, a BE Scope and a Saleae clone Logic16. The bad part: they are not usable together at the same time! You have to decide, analog XOR digital,  no mixed mode.   :--

Regards.
 

Offline tkrmona

  • Newbie
  • Posts: 2
Re: Hantek 6022BE 20MHz USB DSO
« Reply #627 on: July 16, 2014, 06:14:36 pm »
Sorry for chiming in but would RichardK's software also work with the Hantek 6022BL?
Thank you.

Sadly I'm an 6022BL owner and it´s not working with the current Open6022BE version. I hope there's an easy way to adapt the software. RichardK's if you can add support to the 6022BL version, I will apreciate that a lot!!!  :-+ :-+ :-+ :-+
 

Offline RichardK

  • Regular Contributor
  • *
  • Posts: 157
Re: Hantek 6022BE 20MHz USB DSO
« Reply #628 on: July 16, 2014, 06:27:42 pm »
Sorry for chiming in but would RichardK's software also work with the Hantek 6022BL?
Thank you.

Sadly I'm an 6022BL owner and it´s not working with the current Open6022BE version. I hope there's an easy way to adapt the software. RichardK's if you can add support to the 6022BL version, I will apreciate that a lot!!!  :-+ :-+ :-+ :-+

The 6022BL has the same SDK as the 6022BE, so any incompatibility might be as trivial as a file name or hardware ID... And it seems the 6022BL is the 6022BE with the Logic Analyzer components populated...

Edit:

Did some preliminary decompiling on the 6022BL's HTMarch.dll and it has a different hardware ID "d602a-%d" as opposed to the 6022BE's "d6022-%d" and the library functions appear to be the same...

It might work with Open6022BE if you use the 6022BL's HTMarch.dll instead of the 6022BE's HTMarch.dll... So simply delete the HTMarch.dll file included with Open6022BE and replace it with the HTMarch.dll that comes with the 6022BL Software.

The 6022BL's HTMarch.dll has a new function called:

Code: [Select]
dsoChooseDevice(unsigned short DeviceIndex, short nType);
And this is used to specify which device to use (they cannot be used at the same time I suppose)...

The parameter nType is 0 for 6022BL's Logic Analyzer and 1 for 6022BE Scope... If this is required to get the 6022BE functioning I might have to make a call to this function to get the 6022BL to work with Open6022BE.
« Last Edit: July 16, 2014, 06:58:57 pm by RichardK »
 

Offline tkrmona

  • Newbie
  • Posts: 2
Re: Hantek 6022BE 20MHz USB DSO
« Reply #629 on: July 16, 2014, 07:12:45 pm »
Sorry for chiming in but would RichardK's software also work with the Hantek 6022BL?
Thank you.

Sadly I'm an 6022BL owner and it´s not working with the current Open6022BE version. I hope there's an easy way to adapt the software. RichardK's if you can add support to the 6022BL version, I will apreciate that a lot!!!  :-+ :-+ :-+ :-+


The 6022BL has the same SDK as the 6022BE, so any incompatibility might be as trivial as a file name or hardware ID... And it seems the 6022BL is the 6022BE with the Logic Analyzer components populated...

Edit:

Did some preliminary decompiling on the 6022BL's HTMarch.dll and it has a different hardware ID "d602a-%d" as opposed to the 6022BE's "d6022-%d" and the library functions appear to be the same...

It might work with Open6022BE if you use the 6022BL's HTMarch.dll instead of the 6022BE's HTMarch.dll... So simply delete the HTMarch.dll file included with Open6022BE and replace it with the HTMarch.dll that comes with the 6022BL Software.

The 6022BL's HTMarch.dll has a new function called:

Code: [Select]
dsoChooseDevice(unsigned short DeviceIndex, short nType);
And this is used to specify which device to use (they cannot be used at the same time I suppose)...

The parameter nType is 0 for 6022BL's Logic Analyzer and 1 for 6022BE Scope... If this is required to get the 6022BE functioning I might have to make a call to this function to get the 6022BL to work with Open6022BE.

Yeah!! It works!!!! I only change the HTMArch.dll It's looks like everything is working fine. If i found a new bug, I will let you know. Thank You for the quick reply!!
 

Offline RichardK

  • Regular Contributor
  • *
  • Posts: 157
Re: Hantek 6022BE 20MHz USB DSO
« Reply #630 on: July 16, 2014, 07:15:40 pm »
Sorry for chiming in but would RichardK's software also work with the Hantek 6022BL?
Thank you.

Sadly I'm an 6022BL owner and it´s not working with the current Open6022BE version. I hope there's an easy way to adapt the software. RichardK's if you can add support to the 6022BL version, I will apreciate that a lot!!!  :-+ :-+ :-+ :-+


The 6022BL has the same SDK as the 6022BE, so any incompatibility might be as trivial as a file name or hardware ID... And it seems the 6022BL is the 6022BE with the Logic Analyzer components populated...

Edit:

Did some preliminary decompiling on the 6022BL's HTMarch.dll and it has a different hardware ID "d602a-%d" as opposed to the 6022BE's "d6022-%d" and the library functions appear to be the same...

It might work with Open6022BE if you use the 6022BL's HTMarch.dll instead of the 6022BE's HTMarch.dll... So simply delete the HTMarch.dll file included with Open6022BE and replace it with the HTMarch.dll that comes with the 6022BL Software.

The 6022BL's HTMarch.dll has a new function called:

Code: [Select]
dsoChooseDevice(unsigned short DeviceIndex, short nType);
And this is used to specify which device to use (they cannot be used at the same time I suppose)...

The parameter nType is 0 for 6022BL's Logic Analyzer and 1 for 6022BE Scope... If this is required to get the 6022BE functioning I might have to make a call to this function to get the 6022BL to work with Open6022BE.

Yeah!! It works!!!! I only change the HTMArch.dll It's looks like everything is working fine. If i found a new bug, I will let you know. Thank You for the quick reply!!

I'm working on a quick solution that should make it easier to work with both.
 

Offline Rick Law

  • Super Contributor
  • ***
  • Posts: 3423
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #631 on: July 16, 2014, 10:14:27 pm »
Mr. RichardK,

Your contribution to the 6022BE (L) community here is immeasurable.  Anywhere you go, chances are, there is a 6022 user within 100 miles who would buy you a beer.

(Thanks!)
Rick
 

Offline frenky

  • Supporter
  • ****
  • Posts: 1003
  • Country: si
    • Frenki.net
Re: Hantek 6022BE 20MHz USB DSO
« Reply #632 on: July 17, 2014, 08:49:01 am »
 

Offline Keptenkurk

  • Newbie
  • Posts: 2
Re: Hantek 6022BE 20MHz USB DSO
« Reply #633 on: August 12, 2014, 05:31:26 pm »
Received my Hantek 6022BE with two probes included from banggood.com today (currently at USD 68,99 shipping included, delivered within 2 weeks to the Netherlands).
Didn't even bother to install the supplied SW from Hantek (except for the driver) and went straight for the Open6022 version of RichardK on Win7. No HW modifications done yet.
Works like a charm and i'm sure this will be a valuable tool.

Thanks Richard!!  :-+ Keep up the good work!!

EDIT: ...and Rick Law is right about the beer!
« Last Edit: August 12, 2014, 09:40:29 pm by Keptenkurk »
 

Offline whitrzac

  • Newbie
  • Posts: 4
Re: Hantek 6022BE 20MHz USB DSO
« Reply #634 on: August 12, 2014, 08:54:25 pm »
Mine just got here from fleebay. I tried the included software and it locked 5 times in 10 min  :rant:

Another big thanks for open6022be.


Would it be possible to add a THD measurement(for amplifiers/etc)?

I 2nd the Watt/RMS reading. It's easy enough to calculate, but having it done automatically would be awesome
 

Offline whitrzac

  • Newbie
  • Posts: 4
Re: Hantek 6022BE 20MHz USB DSO
« Reply #635 on: August 17, 2014, 05:04:07 am »
Is there a way to set the FFT range?

I want 0hz to ~30khz range. As of right now its all in the 1st division, anything less than 5k is impossible to read.
 

Offline rosasharn

  • Regular Contributor
  • *
  • Posts: 114
Re: Hantek 6022BE 20MHz USB DSO
« Reply #636 on: August 19, 2014, 07:25:01 am »
The software is very simple.
It seems no function to do setting on FFT range. :-//
 

Offline Rick Law

  • Super Contributor
  • ***
  • Posts: 3423
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #637 on: August 19, 2014, 05:14:59 pm »
Mine just got here from fleebay. I tried the included software and it locked 5 times in 10 min  :rant:

Another big thanks for open6022be.


Would it be possible to add a THD measurement(for amplifiers/etc)?

I 2nd the Watt/RMS reading. It's easy enough to calculate, but having it done automatically would be awesome

I think your setup may have a problem.  The included software is not great, but I use it often (since it is Remote Desktop friendly).  It hangs, but rarely.  If it hangs on you so often, check you USB voltage, hubs, and whatever else.  You must have a hidden issue somewhere.

Rick
 

Offline AznGothic

  • Contributor
  • Posts: 16
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #638 on: August 21, 2014, 07:14:29 am »
The file Open6022BE_1_0_BetaPR18_Binary.zip keeps saying its a malicious file in Google Chrome and blocks it. The file Open6022BE_1_0_BetaPR17_Binary.zip downloads just fine however. Is there something wrong with the PR18 file that I should be concerned about?
 

Offline olrowdy01

  • Newbie
  • Posts: 7
Re: Hantek 6022BE 20MHz USB DSO
« Reply #639 on: August 21, 2014, 02:14:05 pm »
Quote from: AznGothic on Today at 05:14:29 PM
The file Open6022BE_1_0_BetaPR18_Binary.zip keeps saying its a malicious file in Google Chrome and blocks it. The file Open6022BE_1_0_BetaPR17_Binary.zip downloads just fine however. Is there something wrong with the PR18 file that I should be concerned about?

PR18 downloaded, unzipped, installed and runs fine in demo mode on my Windows 7, 32 bit machine.  I'm using Firefox V27 and Comodo ISP V7.03xxxx.  Probably Chrome or your virus protection is set a little too sensitive.  Try scanning the zip file with another program for viruses.

I just test downloaded PR18 from
ftp://pididu.com/OpenHantek/ then scanned it with Comodo and it's clean.
 

Offline rosasharn

  • Regular Contributor
  • *
  • Posts: 114
Re: Hantek 6022BE 20MHz USB DSO
« Reply #640 on: August 22, 2014, 01:29:18 am »
I couldn’t agree more with olrowdy01’s statement.

Many browsers clashed with PR18.
While, actually it's clean and seems no harm to my computer.
 

Offline AznGothic

  • Contributor
  • Posts: 16
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #641 on: August 23, 2014, 12:15:01 pm »
Awesome. Thank you for checking into that for me. I was a bit nervous when I saw a big red box pop up saying MALICIOUS! in google chrome. I just downloaded the previous release instead and have been playing around with that but I'll grab the newer one now.
 

Offline whitrzac

  • Newbie
  • Posts: 4
Re: Hantek 6022BE 20MHz USB DSO
« Reply #642 on: August 24, 2014, 02:25:29 pm »
I had a bad usb cable...

The Vrms measure doesn't seem to be working properly.

I have a 400hz, 85v pk-pk, signal, 100x probe
my Vrms measure is 700kv :-//
 

Offline AznGothic

  • Contributor
  • Posts: 16
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #643 on: August 24, 2014, 10:02:10 pm »
Ok, so I downloaded the newer PR18 binary at the link RichardK posted http://jmp.sh/k0tTgXg. After doing this, my 6022BE became unresponsive. The light is a blinking red light that will turn green for a split second and back to a blinking red light. I tried the PR17 software and stock software again to get the same results. The download link above is the link that google chrome also tells me is a malicious download. I tried the FTP link olrowdy01 posted but the link kept returning "server not found." So I took the 6022BE over to my girl friends computer and installed the stock software to find everything worked fine. I went back to my computer, opened up device manager, selected the 6022BE Driver 2 and clicked uninstall. When I disconnect the USB cable and reconnect it, Windows automatically reinstalls the driver which in turn still has the same issue. So how do I uninstall and reinstall this properly so that I can get it working again? Also I'm wondering if the files at the FTP link are different from the files at the HTTP link and could have caused this?
 

Offline Dave_S

  • Newbie
  • Posts: 5
  • Country: de
Re: Hantek 6022BE 20MHz USB DSO
« Reply #644 on: August 25, 2014, 04:50:56 am »
I do not know how much help this will be, but I just ran a diff on the file at at your link and the file that I am using with no apparent problems and the result was no difference.  Could a glitch have caused some kind of defect in the copy that you have?
 

Offline SteveB

  • Newbie
  • Posts: 2
Re: Hantek 6022BE 20MHz USB DSO
« Reply #645 on: August 25, 2014, 11:30:51 pm »
my first post  ;)

With the 6022BE unplugged, go to device manager and uninstall the drivers. Then reinstall from the CD-ROM (or download from Hantek). Then plug in the scope.

Steve.

Please post if it works for you.
 

Offline AznGothic

  • Contributor
  • Posts: 16
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #646 on: August 26, 2014, 12:01:48 am »
With the 6022be unplugged, the device doesn't show up in device manager. Is there a trick to showing unplugged devices?
 

Offline SteveB

  • Newbie
  • Posts: 2
Re: Hantek 6022BE 20MHz USB DSO
« Reply #647 on: August 26, 2014, 05:15:52 am »
Good point ! Of course it won't be there . Uninstall with the device plugged in and then unplug it for the reinstall. My main point was supposed to be that the device shouldn't be plugged *back in* before the drivers were manually reinstalled.

I wasn't that clear in my reply.

Steve.
 

Offline roderick

  • Contributor
  • Posts: 29
  • Country: us
    • Small Projects
Re: Hantek 6022BE 20MHz USB DSO
« Reply #648 on: August 26, 2014, 05:44:14 am »
I noticed back there that someone was having trouble, and running Windows 7.  Not to insult anyone's intelligence, but I noticed there were no Windows 7 drivers on the CD included with my scope.  Those had to be downloaded from the Hantek site.  I'm not exactly sure what Windows 7 will do trying to run the XP driver in compatibility mode.  Perhaps later shipments have remedied that, and the Win7 driver is on the CD...
 

Offline AznGothic

  • Contributor
  • Posts: 16
  • Country: us
Re: Hantek 6022BE 20MHz USB DSO
« Reply #649 on: August 26, 2014, 12:17:16 pm »
I didn't use the disc supplied with the 6022be. Regardless of anything I buy or what computer I'm using I always download drivers to ensure I have the latest driver version. In this cause though, I downloaded the driver because I don't have an optical drive in my computer. I also already tried going to the device manager, uninstalling the driver, unplug the 6022be, plug the 6022be back in and it auto installed the driver. Still the same issue. So I tried going to device manager, uninstall the driver, unplug the 6022be, open programs & features to uninstall the hantek software, reinstall the software, plug the 6022be back in. Still the same issue. I also clicked on update driver, clicked browse for drivers, navigated to the hantek download and clicked ok to update. It said the driver was updated. Still the same problem. That's when I started thinking there was a problem with my 6022be. I took it to my girl friends computer, installed the software, plugged in the 6022be.....everything works fine. I could have sworn I saw someone was having a similar issue and someone typed or linked instructions on how to uninstall the 6022be drivers to fully clean them out and start new but I can't find it now. Perhaps I was dreaming about seeing that. I am running Win7 Ultimate 64bit.

Sorry for the misunderstanding with your post on uninstalling the drivers.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf