Skip to content

Commit 81eb42d

Browse files
committed
Instrustar 205B: Update samplerate table
1 parent 59d7aa3 commit 81eb42d

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

openhantek/src/hantekdso/models/modelISDS205b.cpp

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,17 @@ static void initSpecifications( Dso::ControlSpecification &specification ) {
6565

6666
specification.fixedSampleRates = {
6767
// samplerate, sampleId, downsampling
68-
69-
{ 100e3, 10, 1 },
70-
{ 200e3, 20, 1 },
71-
{ 500e3, 50, 1 },
72-
{ 1e6, 1, 1 },
68+
{ 10e3, 1, 100 }, // 100x downsampling from 1 MS/s!
69+
{ 20e3, 2, 100 }, // 100x downsampling from 2 MS/s!
70+
{ 50e3, 5, 100 }, // 100x downsampling from 5 MS/s!
71+
{ 100e3, 8, 80 }, // 80x downsampling from 8 MS/s
72+
{ 200e3, 8, 40 }, // 40x downsampling from 8 MS/s
73+
{ 500e3, 8, 16 }, // 16x downsampling from 8 MS/s
74+
{ 1e6, 8, 8 }, // 8x downsampling from 8 MS/s
7375
{ 2e6, 8, 4 }, // 4x downsampling from 8 MS/s
74-
{ 7e6, 24, 3 }, // 3x downsampling from 24 MS/s
75-
{ 4e6, 4, 1 },
76-
{ 8e6, 8, 1 },
77-
{ 16e6, 16, 1 }, // no downsampling
76+
{ 5e6, 15, 3 }, // 3x downsampling from 15 MS/s
77+
{ 10e6, 11, 1 }, // no downsampling, 11 means 10 MS/s
78+
{ 15e6, 15, 1 }, // no downsampling
7879
{ 24e6, 24, 1 }, // no downsampling
7980
{ 30e6, 30, 1 }, // no downsampling
8081
{ 48e6, 48, 1 } // no downsampling

0 commit comments

Comments
 (0)