X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Ftoolbars%2Fsamplingbar.cpp;h=987719d8c2f45cfa37db50a03b95c7e34bcbf70d;hp=a2ddaae6bb46a4bde8284b92438ee87716b2052d;hb=6546a6a70c9da402794297cbdc9aba67854a4037;hpb=8575601295c4853ae73fa404eb157bd063af0c20 diff --git a/pv/toolbars/samplingbar.cpp b/pv/toolbars/samplingbar.cpp index a2ddaae6..987719d8 100644 --- a/pv/toolbars/samplingbar.cpp +++ b/pv/toolbars/samplingbar.cpp @@ -54,6 +54,7 @@ SamplingBar::SamplingBar(SigSession &session, QWidget *parent) : _sample_rate("Hz", this), _updating_sample_rate(false), _updating_sample_count(false), + _sample_count_supported(false), _icon_red(":/icons/status-red.svg"), _icon_green(":/icons/status-green.svg"), _icon_grey(":/icons/status-grey.svg"), @@ -126,11 +127,6 @@ void SamplingBar::set_selected_device(struct sr_dev_inst *const sdi) } } -uint64_t SamplingBar::get_record_length() const -{ - return _sample_count.value(); -} - void SamplingBar::set_capture_state(pv::SigSession::capture_state state) { const QIcon *icons[] = {&_icon_grey, &_icon_red, &_icon_green}; @@ -215,10 +211,12 @@ void SamplingBar::update_sample_count_selector() if (sr_config_get(sdi->driver, sdi, NULL, SR_CONF_LIMIT_SAMPLES, &gvar) != SR_OK) { + _sample_count_supported = false; _sample_count.show_none(); } else { + _sample_count_supported = true; _sample_count.show_min_max_step(0, UINT64_MAX, 1); samplecount = g_variant_get_uint64(gvar); @@ -273,12 +271,6 @@ void SamplingBar::on_device_selected() if (_updating_device_selector) return; - update_sample_count_selector(); - update_sample_rate_selector(); - - if (_sample_count.value() == 0) - _sample_count.set_value(DefaultRecordLength); - sr_dev_inst *const sdi = get_selected_device(); _session.set_device(sdi); @@ -291,6 +283,15 @@ void SamplingBar::on_device_selected() // Update the probes popup Probes *const probes = new Probes(_session, this); _probes_button.set_popup(probes); + + // Update sweep timing widgets. + update_sample_count_selector(); + update_sample_rate_selector(); + + if (_sample_count_supported && _sample_count.value() == 0) { + _sample_count.set_value(DefaultRecordLength); + commit_sample_count(); + } } void SamplingBar::on_sample_count_changed()