Skip to content

Commit

Permalink
Update minimal required FW version from 0208 to latest 0210
Browse files Browse the repository at this point in the history
Should not happen that a device with this old FW version
is still connected since March, but who knows.
Maybe related to #316

Signed-off-by: Martin <Ho-Ro@users.noreply.github.com>
  • Loading branch information
Ho-Ro committed Jul 15, 2022
1 parent e5f0e4a commit 6287350
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion openhantek/src/OH_BUILD.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Do not edit, will be re-created at each commit!
#define OH_BUILD "20220703 - commit 1033"
#define OH_BUILD "20220715 - commit 1034"
8 changes: 4 additions & 4 deletions openhantek/src/hantekdso/models/modelDSO6022.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static void applyRequirements_( HantekDsoControl *dsoControl ) {
// VID/PID active VID/PID no FW FW ver FW name Scope name
// |------------| |------------| |----| |---------| |----------|
ModelDSO6022BE::ModelDSO6022BE()
: DSOModel( ID, 0x04b5, 0x6022, 0x04b4, 0x6022, 0x0208, "dso6022be", "DSO-6022BE", Dso::ControlSpecification( 2 ) ) {
: DSOModel( ID, 0x04b5, 0x6022, 0x04b4, 0x6022, 0x0210, "dso6022be", "DSO-6022BE", Dso::ControlSpecification( 2 ) ) {
initSpecifications( specification );
}

Expand All @@ -128,7 +128,7 @@ void ModelDSO6022BE::applyRequirements( HantekDsoControl *dsoControl ) const { a

// Hantek DSO-6022BL (scope or logic analyzer)
ModelDSO6022BL::ModelDSO6022BL()
: DSOModel( ID, 0x04b5, 0x602a, 0x04b4, 0x602a, 0x0208, "dso6022bl", "DSO-6022BL", Dso::ControlSpecification( 2 ) ) {
: DSOModel( ID, 0x04b5, 0x602a, 0x04b4, 0x602a, 0x0210, "dso6022bl", "DSO-6022BL", Dso::ControlSpecification( 2 ) ) {
initSpecifications( specification );
}

Expand Down Expand Up @@ -157,7 +157,7 @@ static ModelSaleae modelInstance_Saleae;

// LCSOFT without EEPROM reports EzUSB VID/PID
ModelEzUSB::ModelEzUSB()
: DSOModel( ID, 0x04b5, 0x6022, 0x04b4, 0x8613, 0x0208, "dso6022be", "LCsoft-EzUSB", Dso::ControlSpecification( 2 ) ) {
: DSOModel( ID, 0x04b5, 0x6022, 0x04b4, 0x8613, 0x0210, "dso6022be", "LCsoft-EzUSB", Dso::ControlSpecification( 2 ) ) {
initSpecifications( specification );
specification.hasCalibrationEEPROM = false; // (big) EEPROM, disabled by address jumper
}
Expand All @@ -167,7 +167,7 @@ void ModelEzUSB::applyRequirements( HantekDsoControl *dsoControl ) const { apply

// Saleae VID/PID in EEPROM
ModelSaleae::ModelSaleae()
: DSOModel( ID, 0x04b5, 0x6022, 0x0925, 0x3881, 0x0208, "dso6022be", "LCsoft-Saleae", Dso::ControlSpecification( 2 ) ) {
: DSOModel( ID, 0x04b5, 0x6022, 0x0925, 0x3881, 0x0210, "dso6022be", "LCsoft-Saleae", Dso::ControlSpecification( 2 ) ) {
initSpecifications( specification );
specification.hasCalibrationEEPROM = false; // we have a big EEPROM
}
Expand Down

0 comments on commit 6287350

Please sign in to comment.