From: Gerhard Sittig Date: Tue, 22 Feb 2022 00:34:25 +0000 (+0100) Subject: Device: Display "continuous" checkbox when settable in the driver. X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=a00c1b6edc840564eea6bb22d292892970f0071e Device: Display "continuous" checkbox when settable in the driver. This has gone unnoticed because the majority of acquisition devices either have local memory or require streaming. Only few support both approaches and users can select the most appropriate approach for their respective use case. Observed with Kingst LA devices. --- diff --git a/pv/binding/device.cpp b/pv/binding/device.cpp index d33802d0..855052cd 100644 --- a/pv/binding/device.cpp +++ b/pv/binding/device.cpp @@ -123,6 +123,7 @@ Device::Device(shared_ptr configurable) : case SR_CONF_RLE: case SR_CONF_POWER_OFF: case SR_CONF_AVERAGING: + case SR_CONF_CONTINUOUS: bind_bool(descr, "", get, set); break;