]> sigrok.org Git - pulseview.git/blobdiff - pv/devinst.cpp
Moved all sr_probe modification into pv::DevInst
[pulseview.git] / pv / devinst.cpp
index 4cae04aee29a32e8f98a862c0550a98f68957535..c0b87fe243414bf5167f7af7f49aed527367d124 100644 (file)
@@ -93,4 +93,16 @@ GVariant* DevInst::list_config(const sr_probe_group *group, int key)
        return data;
 }
 
+void DevInst::enable_probe(const sr_probe *probe, bool enable)
+{
+       for (const GSList *p = _sdi->probes; p; p = p->next)
+               if (probe == p->data) {
+                       const_cast<sr_probe*>(probe)->enabled = enable;
+                       return;
+               }
+
+       // Probe was not found in the device
+       assert(0);
+}
+
 } // pv