Skip to content

Commit

Permalink
upversion to 3.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: Martin <[email protected]>
  • Loading branch information
Ho-Ro committed Apr 5, 2021
1 parent db23aae commit 82a7e1a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
3.2.1
2021-04-05
Two new interpolation modes: step and sinc
Fix Windows issue with cyrillic user names

3.2
2021-02-28
Simultaneous use of more than one device is possible
Expand Down
Binary file modified docs/OpenHantek6022_User_Manual.odt
Binary file not shown.
Binary file modified docs/OpenHantek6022_User_Manual.pdf
Binary file not shown.
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 "20210330 build 837"
#define OH_BUILD "20210405 build 838"
2 changes: 1 addition & 1 deletion openhantek/src/OH_VERSION.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// define the version that is shown on top of the program
// if undefined (for development commits) the build will be shown by OpenHantek

// #define OH_VERSION "3.2.1-rc1"
#define OH_VERSION "3.2.1"

#ifdef OH_VERSION
#undef VERSION
Expand Down
3 changes: 1 addition & 2 deletions openhantek/src/usb/uploadFirmware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ bool UploadFirmware::startUpload( ScopeDevice *scopeDevice ) {
}

// Write firmware into internal RAM using first stage loader built into EZ-USB hardware
// HACK: check if #175 (cyrillic username) can be solved by 'toLocal8Bit()' instead of 'toUtf8()'
// status = ezusb_load_ram( handle, temp_firmware_path->fileName().toUtf8().constData(), FX_TYPE_FX2LP, 0 );
// use local 8bit encoding (utf8 for Linux, iso-8859-x for Windows)
status = ezusb_load_ram( handle, temp_firmware_path->fileName().toLocal8Bit().constData(), FX_TYPE_FX2LP, 0 );
if ( status != LIBUSB_SUCCESS ) {
errorMessage = TR( "Writing the main firmware failed: %1" ).arg( libusb_error_name( status ) );
Expand Down

0 comments on commit 82a7e1a

Please sign in to comment.