Skip to content

Commit e83fa10

Browse files
committedNov 5, 2019
support AC modification for Hantek6022
Signed-off-by: Martin <Ho-Ro@users.noreply.github.com>
1 parent 4a3a288 commit e83fa10

10 files changed

+799
-905
lines changed
 

‎CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ else()
2727
add_compile_options(-Wall -Wextra -pedantic)
2828
endif()
2929

30+
# enable extra feature(s)
31+
if ( DEFINED HANTEK_AC )
32+
add_compile_definitions( HANTEK_AC )
33+
endif()
34+
35+
# show all compile definitions
36+
#get_directory_property( DirDefs COMPILE_DEFINITIONS )
37+
#message( "COMPILE_DEFINITIONS = ${DirDefs}" )
38+
3039
# Qt Widgets based Gui with OpenGL canvas
3140
add_subdirectory(openhantek)
3241

‎docs/HANTEK6022_AC_Modification.pdf

1.45 MB
Binary file not shown.

‎openhantek/src/OH_BUILD.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Do not edit, will be re-created at each commit!
2-
#define OH_BUILD "20191103 build 536"
2+
#define OH_BUILD "20191105 build 537"

‎openhantek/src/OH_VERSION.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// define the version that is shown on top of the program
22
// if undefined (for development commits) the build will be shown by OpenHantek
33

4-
//#define OH_VERSION "v2.17-rc6"
4+
#define OH_VERSION "v2.17-rc6"
55

66

77
# ifdef OH_VERSION

‎openhantek/src/hantekdso/models/modelDSO6022.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,12 @@ static void initSpecifications(Dso::ControlSpecification& specification) {
102102
};
103103

104104
specification.sampleSize = specification.fixedSampleRates.size();
105-
//specification.couplings = {Dso::Coupling::DC};
106-
specification.couplings = {Dso::Coupling::DC, Dso::Coupling::AC}; // requires AC/DC HW mod like DDS120
105+
#ifdef HANTEK_AC
106+
// requires AC/DC HW mod like DDS120, enable with "cmake -D HANTEK_AC=1 .."
107+
specification.couplings = {Dso::Coupling::DC, Dso::Coupling::AC};
108+
#else
109+
specification.couplings = {Dso::Coupling::DC};
110+
#endif
107111
specification.triggerModes = {Dso::TriggerMode::AUTO, Dso::TriggerMode::NORMAL, Dso::TriggerMode::SINGLE};
108112
specification.fixedUSBinLength = 0;
109113
}

‎openhantek/translations/openhantek_de.ts

+402-495
Large diffs are not rendered by default.

‎openhantek/translations/openhantek_fr.ts

+34-34
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<message>
106106
<location filename="../src/configdialog/DsoConfigAnalysisPage.cpp" line="50"/>
107107
<source>Spectrum</source>
108-
<translation type="unfinished">Spectre</translation>
108+
<translation type="unfinished"></translation>
109109
</message>
110110
</context>
111111
<context>
@@ -165,7 +165,7 @@
165165
<location filename="../src/configdialog/DsoConfigColorsPage.cpp" line="47"/>
166166
<location filename="../src/configdialog/DsoConfigColorsPage.cpp" line="51"/>
167167
<source>Spectrum</source>
168-
<translation type="unfinished">Spectre</translation>
168+
<translation type="unfinished"></translation>
169169
</message>
170170
<message>
171171
<location filename="../src/configdialog/DsoConfigColorsPage.cpp" line="117"/>
@@ -198,7 +198,7 @@
198198
<message>
199199
<location filename="../src/configdialog/configdialog.cpp" line="106"/>
200200
<source>Spectrum</source>
201-
<translation type="unfinished">Spectre</translation>
201+
<translation type="unfinished"></translation>
202202
</message>
203203
<message>
204204
<location filename="../src/configdialog/configdialog.cpp" line="110"/>
@@ -430,7 +430,7 @@
430430
<message>
431431
<location filename="../src/docks/HorizontalDock.cpp" line="32"/>
432432
<source>Horizontal</source>
433-
<translation>Horizontal</translation>
433+
<translation type="unfinished"></translation>
434434
</message>
435435
<message>
436436
<location filename="../src/docks/HorizontalDock.cpp" line="35"/>
@@ -787,17 +787,17 @@
787787
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="157"/>
788788
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="173"/>
789789
<source>...</source>
790-
<translation type="unfinished">...</translation>
790+
<translation type="unfinished"></translation>
791791
</message>
792792
<message>
793793
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="189"/>
794794
<source>No USB devices found or your operating system prohibited enumerating devices.</source>
795-
<translation>Aucun périphérique USB n&apos;a été trouvé ou votre système d&apos;exploitation n&apos;a interdit les périphériques de dénombrement.</translation>
795+
<translation type="unfinished"></translation>
796796
</message>
797797
<message>
798798
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="203"/>
799799
<source>No access granted for the selected USB device. Your operating system may prohibit access. On Windows you might need to install a generic driver first. On Linux you need to install an udev rule to grant access to your currently logged in user.</source>
800-
<translation>Aucun accès n&apos;est accordé pour le périphérique USB sélectionné. Votre système d&apos;exploitation peut en interdire l&apos;accès. Sous Windows, vous devrez peut-être d&apos;abord installer un pilote générique. Sous Linux, vous devez installer une règle udev pour autoriser l&apos;accès à votre utilisateur actuellement connecté.</translation>
800+
<translation type="unfinished"></translation>
801801
</message>
802802
<message>
803803
<location filename="../src/selectdevice/newdevicemodelfromexisting.cpp" line="76"/>
@@ -920,7 +920,7 @@
920920
<message>
921921
<location filename="../src/settings.cpp" line="26"/>
922922
<source>CH%1</source>
923-
<translation type="unfinished">CH%1</translation>
923+
<translation type="unfinished"></translation>
924924
</message>
925925
<message>
926926
<location filename="../src/settings.cpp" line="38"/>
@@ -1113,12 +1113,12 @@
11131113
<message>
11141114
<location filename="../src/hantekdso/enums.cpp" line="15"/>
11151115
<source>Voltage</source>
1116-
<translation type="unfinished">Tension</translation>
1116+
<translation type="unfinished"></translation>
11171117
</message>
11181118
<message>
11191119
<location filename="../src/hantekdso/enums.cpp" line="17"/>
11201120
<source>Spectrum</source>
1121-
<translation type="unfinished">Spectre</translation>
1121+
<translation type="unfinished"></translation>
11221122
</message>
11231123
<message>
11241124
<location filename="../src/hantekdso/enums.cpp" line="28"/>
@@ -1245,104 +1245,104 @@
12451245
<message>
12461246
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="14"/>
12471247
<source>Select device</source>
1248-
<translation>Sélectionner l&apos;appareil</translation>
1248+
<translation type="unfinished"></translation>
12491249
</message>
12501250
<message>
12511251
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="27"/>
12521252
<source>Supported device</source>
1253-
<translation>Appareil supporté</translation>
1253+
<translation type="unfinished"></translation>
12541254
</message>
12551255
<message>
12561256
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="39"/>
12571257
<source>Devices:</source>
1258-
<translation>Appareils:</translation>
1258+
<translation type="unfinished"></translation>
12591259
</message>
12601260
<message>
12611261
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="46"/>
12621262
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="59"/>
12631263
<source>...</source>
1264-
<translation>...</translation>
1264+
<translation type="unfinished"></translation>
12651265
</message>
12661266
<message>
12671267
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="86"/>
12681268
<source>Try unsupported</source>
1269-
<translation>Essayez non supporté</translation>
1269+
<translation type="unfinished"></translation>
12701270
</message>
12711271
<message>
12721272
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="92"/>
12731273
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Your device might not directly be supported by OpenHantek6022. But it might be compatible to one of the existing devices. Help us to identify those devices and report back on our &lt;a href=&quot;https://github.com/OpenHantek/openhantek/issues&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;issue tracker&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
1274-
<translation>Il se peut que votre appareil ne soit pas directement pris en charge par OpenHantek6022. Mais il pourrait être compatible avec l&apos;un des appareils existants. Aidez-nous à identifier ces appareils et rapportez-nous sur notre &lt;a href=&quot;https://github.com/OpenHantek/openhantek/issues&quot;&gt;&lt;span style=&quot; text-decoration : souligné ; color:#000000ff ;&quot;&gt;issue tracker&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
1274+
<translation type="unfinished"></translation>
12751275
</message>
12761276
<message>
12771277
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="108"/>
12781278
<source>Add new device from template</source>
1279-
<translation>Ajouter un nouvel appareil à partir du template</translation>
1279+
<translation type="unfinished"></translation>
12801280
</message>
12811281
<message>
12821282
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="53"/>
12831283
<source>&lt;br/&gt;&lt;p&gt;The device is ready for use.&lt;/p&gt;&lt;p&gt;Please observe the &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;user manual&lt;/a&gt; for safe operation.&lt;/p&gt;</source>
1284-
<translation>&lt;br/&gt;&lt;p&gt;L&apos;appareil est prêt à l&apos;emploi.&lt;/p&gt;&lt;p&gt;Veuillez observer le &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;mode d&apos;emploi&lt;/a&gt; pour un fonctionnement sûr.&lt;/p&gt;</translation>
1284+
<translation type="unfinished"></translation>
12851285
</message>
12861286
<message>
12871287
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="59"/>
12881288
<source>&lt;p&gt;Upload in progress ...&lt;/p&gt;&lt;p&gt;If the upload takes more than 30 s, please close this window &lt;br/&gt;and restart the program!&lt;/p&gt;</source>
1289-
<translation>&lt;p&gt;Téléchargement en cours...&lt;/p&gt;&lt;p&gt;Si le téléchargement dure plus de 30 s, fermez cette fenêtre &lt;br/&gt;et redémarrez le programme!&lt;/p&gt;</translation>
1289+
<translation type="unfinished"></translation>
12901290
</message>
12911291
<message>
12921292
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="62"/>
12931293
<source>Connection failed!</source>
1294-
<translation>La connexion a échoué!</translation>
1294+
<translation type="unfinished"></translation>
12951295
</message>
12961296
<message>
12971297
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="67"/>
12981298
<source>&lt;p&gt;OpenHantek6022 is searching for compatible devices ...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:///switch_6022BL.png&apos;&gt;Don&apos;t forget to switch your device into oscilloscope mode if it has multiple modes.&lt;/p&gt;</source>
1299-
<translation>&lt;p&gt;OpenHantek6022 recherche des périphériques compatibles...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:////switch_6022BL.png&apos;&gt;N&apos;oubliez pas de passer votre appareil en mode oscilloscope s&apos;il a plusieurs modes.&lt;/p&gt;</translation>
1299+
<translation type="unfinished"></translation>
13001300
</message>
13011301
<message>
13021302
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="72"/>
13031303
<source>&lt;p&gt;Please make sure you have installed the windows usb driver correctly&lt;/p&gt;</source>
1304-
<translation>&lt;p&gt;Veuillez vous assurer que vous avez installé correctement le pilote usb de Windows&lt;/p&gt;</translation>
1304+
<translation type="unfinished"></translation>
13051305
</message>
13061306
<message>
13071307
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="77"/>
13081308
<source>&lt;p&gt;Please make sure you have copied the udev rules file to &lt;b&gt;%1&lt;/b&gt; for correct USB access permissions.&lt;/p&gt;</source>
1309-
<translation>&lt;p&gt;Veuillez vous assurer d&apos;avoir copié le fichier de règles udev dans &lt;b&gt;%1&lt;/b&gt; pour les permissions d&apos;accès USB correctes.&lt;/p&gt;</translation>
1309+
<translation type="unfinished"></translation>
13101310
</message>
13111311
<message>
13121312
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="81"/>
13131313
<source>&lt;p&gt;Visit the build and run instruction &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;website&lt;/a&gt; for help.&lt;/p&gt;</source>
1314-
<translation>&lt;p&gt;Visitez l&apos;instruction build and run &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;website&lt;/a&gt; pour de l&apos;aide.&lt;/p&gt;</translation>
1314+
<translation type="unfinished"></translation>
13151315
</message>
13161316
<message>
13171317
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="112"/>
13181318
<source>Can&apos;t initalize USB: %1</source>
1319-
<translation>Impossible d&apos;initialiser l&apos;USB: %1</translation>
1319+
<translation type="unfinished"></translation>
13201320
</message>
13211321
</context>
13221322
<context>
13231323
<name>SpectrumDock</name>
13241324
<message>
13251325
<location filename="../src/docks/SpectrumDock.cpp" line="28"/>
13261326
<source>Spectrum</source>
1327-
<translation>Spectre</translation>
1327+
<translation type="unfinished"></translation>
13281328
</message>
13291329
</context>
13301330
<context>
13311331
<name>TriggerDock</name>
13321332
<message>
13331333
<location filename="../src/docks/TriggerDock.cpp" line="23"/>
13341334
<source>Trigger</source>
1335-
<translation>Trigger</translation>
1335+
<translation type="unfinished"></translation>
13361336
</message>
13371337
<message>
13381338
<location filename="../src/docks/TriggerDock.cpp" line="27"/>
13391339
<source>CH%1</source>
1340-
<translation>CH%1</translation>
1340+
<translation type="unfinished"></translation>
13411341
</message>
13421342
<message>
13431343
<location filename="../src/docks/TriggerDock.cpp" line="30"/>
13441344
<source>CH%1 smooth</source>
1345-
<translation>CH%1 lisse</translation>
1345+
<translation type="unfinished"></translation>
13461346
</message>
13471347
<message>
13481348
<location filename="../src/docks/TriggerDock.cpp" line="33"/>
@@ -1365,27 +1365,27 @@
13651365
<message>
13661366
<location filename="../src/docks/VoltageDock.cpp" line="32"/>
13671367
<source>Voltage</source>
1368-
<translation>Tension</translation>
1368+
<translation type="unfinished"></translation>
13691369
</message>
13701370
<message>
13711371
<location filename="../src/docks/VoltageDock.cpp" line="56"/>
13721372
<source>CH&amp;%1</source>
1373-
<translation>CH&amp;%1</translation>
1373+
<translation type="unfinished"></translation>
13741374
</message>
13751375
<message>
13761376
<location filename="../src/docks/VoltageDock.cpp" line="58"/>
13771377
<source>&amp;MATH</source>
1378-
<translation>&amp;MATH</translation>
1378+
<translation type="unfinished"></translation>
13791379
</message>
13801380
<message>
13811381
<location filename="../src/docks/VoltageDock.cpp" line="61"/>
13821382
<source>Invert</source>
1383-
<translation>Inverser</translation>
1383+
<translation type="unfinished"></translation>
13841384
</message>
13851385
<message>
13861386
<location filename="../src/docks/VoltageDock.cpp" line="62"/>
13871387
<source>x10</source>
1388-
<translation>x10</translation>
1388+
<translation type="unfinished"></translation>
13891389
</message>
13901390
</context>
13911391
</TS>

‎openhantek/translations/openhantek_it.ts

+16-16
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@
787787
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="157"/>
788788
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="173"/>
789789
<source>...</source>
790-
<translation type="unfinished">...</translation>
790+
<translation type="unfinished"></translation>
791791
</message>
792792
<message>
793793
<location filename="../src/selectdevice/newdevicemodelfromexisting.ui" line="189"/>
@@ -1245,78 +1245,78 @@
12451245
<message>
12461246
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="14"/>
12471247
<source>Select device</source>
1248-
<translation>Seleziona apparecchio</translation>
1248+
<translation type="unfinished"></translation>
12491249
</message>
12501250
<message>
12511251
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="27"/>
12521252
<source>Supported device</source>
1253-
<translation>Apparecchio supportato</translation>
1253+
<translation type="unfinished"></translation>
12541254
</message>
12551255
<message>
12561256
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="39"/>
12571257
<source>Devices:</source>
1258-
<translation>Apparecchi:</translation>
1258+
<translation type="unfinished"></translation>
12591259
</message>
12601260
<message>
12611261
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="46"/>
12621262
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="59"/>
12631263
<source>...</source>
1264-
<translation>...</translation>
1264+
<translation type="unfinished"></translation>
12651265
</message>
12661266
<message>
12671267
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="86"/>
12681268
<source>Try unsupported</source>
1269-
<translation>Prova non supportato</translation>
1269+
<translation type="unfinished"></translation>
12701270
</message>
12711271
<message>
12721272
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="92"/>
12731273
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Your device might not directly be supported by OpenHantek6022. But it might be compatible to one of the existing devices. Help us to identify those devices and report back on our &lt;a href=&quot;https://github.com/OpenHantek/openhantek/issues&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;issue tracker&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
1274-
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Il vostro dispositivo potrebbe non essere supportato direttamente da OpenHantek6022. Ma potrebbe essere compatibile con uno dei dispositivi esistenti. Aiutaci a identificare questi dispositivi e riportaci sul nostro &lt;a href=&quot;https://github.com/OpenHantek/openhantek/issues&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#000000ff;&quot;&gt;issue tracker&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
1274+
<translation type="unfinished"></translation>
12751275
</message>
12761276
<message>
12771277
<location filename="../src/selectdevice/selectsupporteddevice.ui" line="108"/>
12781278
<source>Add new device from template</source>
1279-
<translation>Aggiungere un nuovo dispositivo dal template</translation>
1279+
<translation type="unfinished"></translation>
12801280
</message>
12811281
<message>
12821282
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="53"/>
12831283
<source>&lt;br/&gt;&lt;p&gt;The device is ready for use.&lt;/p&gt;&lt;p&gt;Please observe the &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;user manual&lt;/a&gt; for safe operation.&lt;/p&gt;</source>
1284-
<translation>&lt;br/&gt;&lt;p&gt;Il dispositivo è pronto all&apos;uso.&lt;/p&gt;&lt;p&gt;Per un funzionamento sicuro, osservare il &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/OpenHantek6022_User_Manual.pdf&apos;&gt;manuale d&apos;uso.&lt;/a&gt;</translation>
1284+
<translation type="unfinished"></translation>
12851285
</message>
12861286
<message>
12871287
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="59"/>
12881288
<source>&lt;p&gt;Upload in progress ...&lt;/p&gt;&lt;p&gt;If the upload takes more than 30 s, please close this window &lt;br/&gt;and restart the program!&lt;/p&gt;</source>
1289-
<translation>&lt;p&gt;Carica in corso ...&lt;/p&gt;&lt;p&gt;&lt;p&gt;Se il caricamento richiede più di 30 secondi, chiudi questa finestra &lt;br/&gt;e riavvia il programma!&lt;/p&gt;</translation>
1289+
<translation type="unfinished"></translation>
12901290
</message>
12911291
<message>
12921292
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="62"/>
12931293
<source>Connection failed!</source>
1294-
<translation>Il collegamento è fallito!</translation>
1294+
<translation type="unfinished"></translation>
12951295
</message>
12961296
<message>
12971297
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="67"/>
12981298
<source>&lt;p&gt;OpenHantek6022 is searching for compatible devices ...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:///switch_6022BL.png&apos;&gt;Don&apos;t forget to switch your device into oscilloscope mode if it has multiple modes.&lt;/p&gt;</source>
1299-
<translation>&lt;p&gt;ApertoHantek6022 è alla ricerca di dispositivi compatibili...&lt;/p&gt;&lt;p&gt;&lt;img align=&apos;right&apos; height=&apos;200&apos; src=&apos;qrc:////switch_6022BL.png&apos;&gt;Non dimenticare di passare il dispositivo in modalità oscilloscopio se ha più modalità.&lt;/p&gt;</translation>
1299+
<translation type="unfinished"></translation>
13001300
</message>
13011301
<message>
13021302
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="72"/>
13031303
<source>&lt;p&gt;Please make sure you have installed the windows usb driver correctly&lt;/p&gt;</source>
1304-
<translation>&lt;p&gt;Assicurati di aver installato correttamente il driver usb di Windows.&lt;/p&gt;</translation>
1304+
<translation type="unfinished"></translation>
13051305
</message>
13061306
<message>
13071307
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="77"/>
13081308
<source>&lt;p&gt;Please make sure you have copied the udev rules file to &lt;b&gt;%1&lt;/b&gt; for correct USB access permissions.&lt;/p&gt;</source>
1309-
<translation>&lt;p&gt;Assicurati di aver copiato il file delle regole udev in &lt;b&gt;%1&lt;/b&gt; per ottenere le corrette autorizzazioni di accesso USB.&lt;/p&gt;</translation>
1309+
<translation type="unfinished"></translation>
13101310
</message>
13111311
<message>
13121312
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="81"/>
13131313
<source>&lt;p&gt;Visit the build and run instruction &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;website&lt;/a&gt; for help.&lt;/p&gt;</source>
1314-
<translation>&lt;p&gt;Visitare l&apos;istruzione di compilazione ed esecuzione &lt;a href=&apos;https://github.com/OpenHantek/OpenHantek6022/blob/master/docs/build.md&apos;&gt;sito web site&lt;/a&gt; per help.&lt;/p&gt;</translation>
1314+
<translation type="unfinished"></translation>
13151315
</message>
13161316
<message>
13171317
<location filename="../src/selectdevice/selectsupporteddevice.cpp" line="112"/>
13181318
<source>Can&apos;t initalize USB: %1</source>
1319-
<translation>Non può initalizzare USB: %1</translation>
1319+
<translation type="unfinished"></translation>
13201320
</message>
13211321
</context>
13221322
<context>

‎openhantek/translations/openhantek_pt.ts

+327-355
Large diffs are not rendered by default.

‎readme.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ After David [stopped maintaining](https://github.com/OpenHantek/openhantek/issue
2626
* Extensive [User Manual](docs/OpenHantek6022_User_Manual.pdf) with technical specs and schematics.
2727

2828
## Features
29-
3029
* Voltage and Spectrum view for all device supported chanels.
3130
* CH1 and CH2 name becomes red when input is clipped (bottom left).
3231
* Checkbox for X10 probes.
@@ -51,6 +50,9 @@ After David [stopped maintaining](https://github.com/OpenHantek/openhantek/issue
5150
This allows a minimum window size of 640*480 for old workstation computers.
5251
* All settings can be saved to a configuration file and loaded again.
5352

53+
## AC coupling
54+
* A [little HW modification](docs/HANTEK6022_AC_Modification.pdf) adds AC coupling. OpenHantek6022 supports this feature since v2.17-rc5 / FW0204.
55+
5456
## Install prebuilt binary
5557
* Get Linux, Raspberry Pi (and untested Win) packages from the [Releases](https://github.com/OpenHantek/OpenHantek6022/releases) page.
5658
* Get MacOSX package from [macports](https://www.macports.org/ports.php?by=name&substr=openhantek) - thx [ra1nb0w](https://github.com/ra1nb0w).

0 commit comments

Comments
 (0)
Please sign in to comment.