Commit 5381c62
authored
fix check no_of_samples
changed at row 204 from
if timebase_options.no_of_samples is not None and timebase_options.no_of_samples > max_samples_possible:
to
if timebase_options.no_of_samples is not None and timebase_options.no_of_samples > max_samples_possible.value:
the check to calculate timebase while requesting a fixed number of samples is not correct1 parent 97c73f0 commit 5381c62
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
201 | 201 | | |
202 | 202 | | |
203 | 203 | | |
204 | | - | |
| 204 | + | |
205 | 205 | | |
206 | 206 | | |
207 | 207 | | |
| |||
0 commit comments