X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdevice%2Fdevinst.cpp;h=0301063440200d4b693105623f329fbce303b9f6;hb=87b79835014a386fb51b52bc993dbb693bd27197;hp=4543e5c81d8dba5cf212918bdb31cfa199e6476d;hpb=4871ed92f2d9e6e514223383ba16e6ad78c81161;p=pulseview.git diff --git a/pv/device/devinst.cpp b/pv/device/devinst.cpp index 4543e5c..0301063 100644 --- a/pv/device/devinst.cpp +++ b/pv/device/devinst.cpp @@ -90,19 +90,19 @@ GVariant* DevInst::list_config(const sr_channel_group *group, int key) return data; } -void DevInst::enable_probe(const sr_channel *probe, bool enable) +void DevInst::enable_channel(const sr_channel *channel, bool enable) { assert(_owner); sr_dev_inst *const sdi = dev_inst(); assert(sdi); for (const GSList *p = sdi->channels; p; p = p->next) - if (probe == p->data) { - const_cast(probe)->enabled = enable; + if (channel == p->data) { + const_cast(channel)->enabled = enable; config_changed(); return; } - // Probe was not found in the device + // Channel was not found in the device assert(0); } @@ -126,13 +126,13 @@ bool DevInst::is_trigger_enabled() const void DevInst::start() { - if (sr_session_start() != SR_OK) + if (sr_session_start(SigSession::_sr_session) != SR_OK) throw tr("Failed to start session."); } void DevInst::run() { - sr_session_run(); + sr_session_run(SigSession::_sr_session); } } // device