2
0
forked from Ivasoft/DSView

Set the analog's min time as 200ms

This commit is contained in:
dreamsourcelabTAI
2023-09-26 19:35:14 +08:00
parent 8373824144
commit 496e6ae9c9

View File

@@ -590,7 +590,7 @@ namespace pv
if (mode == DSO)
not_last = duration >= min_timebase;
else if (mode == ANALOG)
not_last = (duration >= SR_MS(100)) &&
not_last = (duration >= SR_MS(200)) &&
(duration / SR_SEC(1) * samplerate >= SR_KB(1));
else
not_last = (duration / SR_SEC(1) * samplerate >= SR_KB(1));