]> sigrok.org Git - pulseview.git/log
pulseview.git
10 years agoAdded LogicSignal::get_data
Joel Holdsworth [Sun, 16 Feb 2014 10:55:27 +0000 (10:55 +0000)]
Added LogicSignal::get_data

10 years agoSamplingBar: Only use DefaultSampleCount if the _sample_count widget is unset.
Joel Holdsworth [Sat, 1 Mar 2014 16:30:07 +0000 (16:30 +0000)]
SamplingBar: Only use DefaultSampleCount if the _sample_count widget is unset.

This fixes bug #324

10 years agoUse boost::filesystem::path to get the filename from a path
Joel Holdsworth [Sat, 1 Mar 2014 10:49:05 +0000 (10:49 +0000)]
Use boost::filesystem::path to get the filename from a path

10 years agoDon't attempt to set SR_CONF_LIMIT_SAMPLES when it's not supported
Joel Holdsworth [Wed, 26 Feb 2014 21:45:30 +0000 (22:45 +0100)]
Don't attempt to set SR_CONF_LIMIT_SAMPLES when it's not supported

10 years agoShow the file-device in the selector when a file is loaded
Joel Holdsworth [Wed, 26 Feb 2014 21:31:39 +0000 (22:31 +0100)]
Show the file-device in the selector when a file is loaded

10 years agoSamplingBar: Surpressed a spurious update loop
Joel Holdsworth [Sat, 1 Mar 2014 08:51:58 +0000 (08:51 +0000)]
SamplingBar: Surpressed a spurious update loop

10 years agoMoved default device functionality into SigSession
Joel Holdsworth [Sat, 1 Mar 2014 08:51:37 +0000 (08:51 +0000)]
Moved default device functionality into SigSession

10 years agoMoved session creation into DevInst objects
Joel Holdsworth [Sat, 22 Feb 2014 12:45:36 +0000 (12:45 +0000)]
Moved session creation into DevInst objects

10 years agoRemoved a redundant call to SigSession::set_device
Joel Holdsworth [Sat, 22 Feb 2014 17:24:21 +0000 (17:24 +0000)]
Removed a redundant call to SigSession::set_device

10 years agoMoved SigSession::is_trigger_enabled into DevInst
Joel Holdsworth [Sat, 22 Feb 2014 12:57:04 +0000 (12:57 +0000)]
Moved SigSession::is_trigger_enabled into DevInst

10 years agoMoved DevInst::_sdi down into Device
Joel Holdsworth [Sat, 22 Feb 2014 10:35:39 +0000 (10:35 +0000)]
Moved DevInst::_sdi down into Device

10 years agoMoved DeviceManager::use_device and release_device into DevInst
Joel Holdsworth [Sat, 22 Feb 2014 09:23:33 +0000 (09:23 +0000)]
Moved DeviceManager::use_device and release_device into DevInst

10 years agoMade DeviceManager only handle Device objects
Joel Holdsworth [Sat, 22 Feb 2014 09:01:23 +0000 (09:01 +0000)]
Made DeviceManager only handle Device objects

10 years agoAdded pv::device::Device
Joel Holdsworth [Wed, 19 Feb 2014 22:50:07 +0000 (22:50 +0000)]
Added pv::device::Device

10 years agoMoved DevInst into the pv::device namespace
Joel Holdsworth [Wed, 19 Feb 2014 22:18:01 +0000 (22:18 +0000)]
Moved DevInst into the pv::device namespace

10 years agoIn View::zoom_one_to_one use View::get_visible_data
Joel Holdsworth [Sun, 16 Feb 2014 10:14:08 +0000 (10:14 +0000)]
In View::zoom_one_to_one use View::get_visible_data

10 years agoLogicSignal: Un-break trigger configuration. (bug #318)
Daniel Elstner [Thu, 27 Feb 2014 22:56:28 +0000 (23:56 +0100)]
LogicSignal: Un-break trigger configuration. (bug #318)

10 years agoDon't join with non-threads. Fixes 323
Marcus Comstedt [Sat, 22 Feb 2014 11:15:54 +0000 (12:15 +0100)]
Don't join with non-threads.  Fixes 323

10 years agoPass new unit_size argument to srd_inst_probe_set_all()
Daniel Elstner [Thu, 20 Feb 2014 05:33:21 +0000 (06:33 +0100)]
Pass new unit_size argument to srd_inst_probe_set_all()

10 years agodecode: Fix mixup of bytes vs samples
Daniel Elstner [Tue, 18 Feb 2014 22:41:33 +0000 (23:41 +0100)]
decode: Fix mixup of bytes vs samples

(DecoderStack::decode_proc): The final argument to srd_session_send()
is a byte count, not a sample count.
(LogicSnapshot::get_samples): Multiply start_sample by the unit size
to get the byte offset into the buffer.

10 years agomemaccess.cmake: Use STATUS instead of WARNING for output.
Uwe Hermann [Thu, 20 Feb 2014 13:35:28 +0000 (14:35 +0100)]
memaccess.cmake: Use STATUS instead of WARNING for output.

Using STATUS looks nicer here (and it's an informational message only).

Old:
CMake Warning at CMake/memaccess.cmake:39 (MESSAGE):
  Cross compiling - using portable code for memory access
Call Stack (most recent call first):
  CMakeLists.txt:93 (memaccess_check_unaligned_le)

New:
-- Cross compiling - using portable code for memory access

10 years agomemaccess.cmake: Cosmetics, whitespace, consistency fixes.
Uwe Hermann [Thu, 20 Feb 2014 13:34:47 +0000 (14:34 +0100)]
memaccess.cmake: Cosmetics, whitespace, consistency fixes.

Match the rest of PulseView's CMake file conventions more closely.

10 years agoSkip check for unportable sample pack/unpack when cross-compiling
Marcus Comstedt [Wed, 19 Feb 2014 18:40:34 +0000 (19:40 +0100)]
Skip check for unportable sample pack/unpack when cross-compiling

10 years agoCheck if unportable sample pack/unpack works and in that case use it.
Marcus Comstedt [Sun, 4 Aug 2013 22:35:02 +0000 (00:35 +0200)]
Check if unportable sample pack/unpack works and in that case use it.

10 years agoImplement portable LA sample packing and unpacking.
Marcus Comstedt [Sun, 4 Aug 2013 14:29:45 +0000 (16:29 +0200)]
Implement portable LA sample packing and unpacking.

10 years agoAdded row heading text
Joel Holdsworth [Thu, 13 Feb 2014 23:47:06 +0000 (23:47 +0000)]
Added row heading text

10 years agoFixed unit test CMakeLists.txt
Joel Holdsworth [Fri, 14 Feb 2014 17:29:28 +0000 (17:29 +0000)]
Fixed unit test CMakeLists.txt

Change-Id: Ib6f431ecc26e771ad18fb16118fe047eec8b734f

10 years agoPreallocate memory before samples are received.
Daniel King [Thu, 13 Feb 2014 20:16:17 +0000 (20:16 +0000)]
Preallocate memory before samples are received.

Preallocating memory for samples when a capture is started improves performance during the capture, as realloc() is called only once.

10 years agoNotify that config change when probes are enabled/disabled
Joel Holdsworth [Mon, 10 Feb 2014 22:08:35 +0000 (22:08 +0000)]
Notify that config change when probes are enabled/disabled

This fixes 296

10 years agoSweepTimingWidget: When the exact value isn't available try to set a close match
Joel Holdsworth [Tue, 11 Feb 2014 21:39:07 +0000 (21:39 +0000)]
SweepTimingWidget: When the exact value isn't available try to set a close match

10 years agoMoved all sr_probe modification into pv::DevInst
Joel Holdsworth [Mon, 10 Feb 2014 22:02:44 +0000 (22:02 +0000)]
Moved all sr_probe modification into pv::DevInst

10 years agoRemoved SigSession from Trace
Joel Holdsworth [Mon, 10 Feb 2014 21:46:18 +0000 (21:46 +0000)]
Removed SigSession from Trace

10 years agoRemoved _session.get_device calls from LogicSignal
Joel Holdsworth [Mon, 10 Feb 2014 21:28:07 +0000 (21:28 +0000)]
Removed _session.get_device calls from LogicSignal

10 years agoAdded DevInst pointer to Signal
Joel Holdsworth [Mon, 10 Feb 2014 21:26:32 +0000 (21:26 +0000)]
Added DevInst pointer to Signal

10 years agoUpdated the sample rate selector when the config is changed
Joel Holdsworth [Sun, 9 Feb 2014 19:45:21 +0000 (19:45 +0000)]
Updated the sample rate selector when the config is changed

10 years agoSamplingBar: Improved event loop protection
Joel Holdsworth [Tue, 11 Feb 2014 21:33:14 +0000 (21:33 +0000)]
SamplingBar: Improved event loop protection

10 years agoAdded DevInst::config_changed signal
Joel Holdsworth [Sun, 9 Feb 2014 19:30:23 +0000 (19:30 +0000)]
Added DevInst::config_changed signal

10 years agoMoved config getting/setting into DevInst
Joel Holdsworth [Sun, 9 Feb 2014 15:08:12 +0000 (15:08 +0000)]
Moved config getting/setting into DevInst

10 years agoFix some disappearing annotations
Joel Holdsworth [Sun, 9 Feb 2014 19:09:59 +0000 (19:09 +0000)]
Fix some disappearing annotations

10 years agoWrapped sr_dev_inst in a class: pv::DevInst
Joel Holdsworth [Sun, 9 Feb 2014 13:40:15 +0000 (13:40 +0000)]
Wrapped sr_dev_inst in a class: pv::DevInst

10 years agoDecodeTrace: Draw the error over the unresolved period
Joel Holdsworth [Sat, 8 Feb 2014 17:02:11 +0000 (17:02 +0000)]
DecodeTrace: Draw the error over the unresolved period

10 years agoDo not attempt to decode when required probes have not been specified
Joel Holdsworth [Sat, 8 Feb 2014 16:42:18 +0000 (16:42 +0000)]
Do not attempt to decode when required probes have not been specified

This fixes 204

10 years agoAdded some missing fromUtf8s
Joel Holdsworth [Sat, 8 Feb 2014 16:13:17 +0000 (16:13 +0000)]
Added some missing fromUtf8s

This fixes the issues mentioned in #307

10 years agoRowData: Removed _ann_start_index and _ann_end_index
Joel Holdsworth [Sat, 8 Feb 2014 09:48:48 +0000 (09:48 +0000)]
RowData: Removed _ann_start_index and _ann_end_index

This fixes #308

10 years agoImproved decode annotation colouring
Joel Holdsworth [Sat, 8 Feb 2014 13:35:17 +0000 (13:35 +0000)]
Improved decode annotation colouring

This fixes bug #311

10 years agoFixed decoder probes auto-select logic
Joel Holdsworth [Sat, 8 Feb 2014 10:04:51 +0000 (10:04 +0000)]
Fixed decoder probes auto-select logic

This fixes bug #310

10 years agoAdd bindings for new device options
Daniel Elstner [Wed, 5 Feb 2014 21:35:37 +0000 (22:35 +0100)]
Add bindings for new device options

Add device option bindings for the SR_CONF_TRIGGER_SLOPE,
SR_CONF_EXTERNAL_CLOCK and SR_CONF_CLOCK_EDGE settings.  For
now, the slope and edge settings use the generic combo box
widget.

10 years agoAdded show/hide decoder button
Joel Holdsworth [Sun, 2 Feb 2014 20:11:54 +0000 (20:11 +0000)]
Added show/hide decoder button

10 years agoAdded decoder show/hide icons
Joel Holdsworth [Sun, 2 Feb 2014 19:37:23 +0000 (19:37 +0000)]
Added decoder show/hide icons

10 years agoImproved row annotation colouring
Joel Holdsworth [Sun, 2 Feb 2014 19:24:34 +0000 (19:24 +0000)]
Improved row annotation colouring

10 years agoSplit annotation data set into rows, and improved painting.
Joel Holdsworth [Sun, 2 Feb 2014 17:48:47 +0000 (17:48 +0000)]
Split annotation data set into rows, and improved painting.

This has allowed the removal of Annotation::_row and Annotation::_pd_index

10 years agoFix bug #235. Add shortcut keys for View/Zoom In (Ctrl++) and View/Zoom Out (Ctrl+-)
ulflulfl [Sat, 1 Feb 2014 18:04:47 +0000 (18:04 +0000)]
Fix bug #235. Add shortcut keys for View/Zoom In (Ctrl++) and View/Zoom Out (Ctrl+-)

These are the shortcut keys for zoom in and out as suggested by
QT. Works with the normal keyboard and numpad keys.

Seems that the preferred simple + and - keys have an issue.
While the - key is working and displayed in the menu as expected,
the + key is zooming but not displayed at View/Zoom In
in the menu. I've tried several attempts.

10 years agoExtract only the subset of annotations that are in view.
Joel Holdsworth [Fri, 27 Dec 2013 14:00:41 +0000 (14:00 +0000)]
Extract only the subset of annotations that are in view.

To achieve this lists of annotations have been added sorted by
start sample and end sample

10 years agoDraw stacked decoder traces below the other PDs (avoids overlap).
Uwe Hermann [Sat, 1 Feb 2014 14:04:45 +0000 (15:04 +0100)]
Draw stacked decoder traces below the other PDs (avoids overlap).

Every stacked decoder is drawn below the PDs it stacks upon, so that all
of the annotations of all PDs in the stack can be seen, and no overlap
happens.

10 years agopv::data::decode::Annotation: Add pd_index() and set_pd_index().
Uwe Hermann [Sat, 1 Feb 2014 01:31:00 +0000 (02:31 +0100)]
pv::data::decode::Annotation: Add pd_index() and set_pd_index().

10 years agopv::view::DecodeTrace: Draw annotation rows according to PD metadata.
Uwe Hermann [Fri, 31 Jan 2014 20:29:56 +0000 (21:29 +0100)]
pv::view::DecodeTrace: Draw annotation rows according to PD metadata.

10 years agopv::data::DecoderStack: Set _row for each annotation.
Uwe Hermann [Fri, 31 Jan 2014 20:24:18 +0000 (21:24 +0100)]
pv::data::DecoderStack: Set _row for each annotation.

For each annotation, keep track of the "annotation row" it belongs to.

10 years agopv::data::decode::Annotation: Add row() and set_row().
Uwe Hermann [Fri, 31 Jan 2014 20:03:03 +0000 (21:03 +0100)]
pv::data::decode::Annotation: Add row() and set_row().

Keep track of the "annotation row" this annotation is supposed to be
displayed on.

10 years agodecoderstack.cpp: Improve two error messages a bit.
Uwe Hermann [Fri, 31 Jan 2014 00:04:36 +0000 (01:04 +0100)]
decoderstack.cpp: Improve two error messages a bit.

10 years agodecode: Clear error message upon every new session run.
Uwe Hermann [Thu, 30 Jan 2014 23:47:41 +0000 (00:47 +0100)]
decode: Clear error message upon every new session run.

When a decoder throws an exception, i.e. srd_session_send() returns an error,
PulseView shows a red "Failed to initialise decoder" banner in the
decode trace at the moment.

This can happen when e.g. invalid option values are set in the PD popup,
or invalid probe combinations, and so on. However, after the user resolved
the error condition (e.g. selected a proper set of probes / options) the
red error banner would still remain visible and no re-decoding would happen.

This patch fixes that.

10 years agoFixed layout of labeled widgets
Joel Holdsworth [Wed, 29 Jan 2014 21:32:06 +0000 (21:32 +0000)]
Fixed layout of labeled widgets

10 years agonsis: contrib/pulseview.nsi: Drop obsolete file.
Uwe Hermann [Tue, 28 Jan 2014 16:57:30 +0000 (17:57 +0100)]
nsis: contrib/pulseview.nsi: Drop obsolete file.

We're only using the cross-compile version pulseview_cross.nsi these
days since it is much more convenient, and the old native build file
was not working and/or up-to-date anyway.

10 years agoCMakeLists.txt, test/CMakeLists.txt: MinGW linking fix.
Uwe Hermann [Tue, 28 Jan 2014 16:55:51 +0000 (17:55 +0100)]
CMakeLists.txt, test/CMakeLists.txt: MinGW linking fix.

10 years agotest/CMakeLists.txt: Fix MinGW build of the tests.
Uwe Hermann [Tue, 28 Jan 2014 16:54:30 +0000 (17:54 +0100)]
test/CMakeLists.txt: Fix MinGW build of the tests.

10 years agoFixed off-by-one in DecoderStack::decode_proc
Joel Holdsworth [Sat, 25 Jan 2014 13:27:41 +0000 (13:27 +0000)]
Fixed off-by-one in DecoderStack::decode_proc

10 years agopv::prop::Int: Removed assert from Int::get_widget
Joel Holdsworth [Sat, 25 Jan 2014 12:07:57 +0000 (12:07 +0000)]
pv::prop::Int: Removed assert from Int::get_widget

10 years agopv::prop::String: Do not create a widget if the initial value could not be retrieved
Joel Holdsworth [Sat, 25 Jan 2014 12:06:25 +0000 (12:06 +0000)]
pv::prop::String: Do not create a widget if the initial value could not be retrieved

10 years agopv::prop::Double: Do not create a widget if the initial value could not be retrieved
Joel Holdsworth [Sat, 25 Jan 2014 12:06:11 +0000 (12:06 +0000)]
pv::prop::Double: Do not create a widget if the initial value could not be retrieved

10 years agopv::prop::Bool: Do not create a widget if the initial value could not be retrieved
Joel Holdsworth [Sat, 25 Jan 2014 12:05:38 +0000 (12:05 +0000)]
pv::prop::Bool: Do not create a widget if the initial value could not be retrieved

10 years agoSet default build type to RelWithDebInfo
Joel Holdsworth [Sat, 25 Jan 2014 11:22:16 +0000 (11:22 +0000)]
Set default build type to RelWithDebInfo

10 years agopv::prop::Enum: Do not create a widget if the initial value could not be retrieved
Joel Holdsworth [Sat, 25 Jan 2014 11:13:33 +0000 (11:13 +0000)]
pv::prop::Enum: Do not create a widget if the initial value could not be retrieved

10 years agoAdd an extra sample to the logic edges so that the end sample is visible
Joel Holdsworth [Sat, 25 Jan 2014 09:51:11 +0000 (09:51 +0000)]
Add an extra sample to the logic edges so that the end sample is visible

10 years agoFixed AnalogSnapshotTest
Joel Holdsworth [Sat, 25 Jan 2014 08:48:27 +0000 (08:48 +0000)]
Fixed AnalogSnapshotTest

This fixes bug #286

10 years agotest/CMakeLists.txt: Fix build on Windows/MinGW.
Uwe Hermann [Tue, 21 Jan 2014 19:31:14 +0000 (20:31 +0100)]
test/CMakeLists.txt: Fix build on Windows/MinGW.

On Windows/MinGW we need to use Boost's 'thread_win32' instead of
'thread' (was already done in the main CMakeLists.txt, but not yet
in test/CMakeLists.txt).

10 years agoPorted to new SR_CONF_LIMIT_SAMPLES config key
Joel Holdsworth [Sun, 19 Jan 2014 22:05:55 +0000 (22:05 +0000)]
Ported to new SR_CONF_LIMIT_SAMPLES config key

10 years agoShow a 1-2-5 list for the sample count widget
Joel Holdsworth [Sun, 19 Jan 2014 14:49:45 +0000 (14:49 +0000)]
Show a 1-2-5 list for the sample count widget

10 years agoSamplingBar: Show a 1-2-5 for min-max sample rate values
Joel Holdsworth [Sun, 19 Jan 2014 14:36:34 +0000 (14:36 +0000)]
SamplingBar: Show a 1-2-5 for min-max sample rate values

10 years agoSweepTimingWidgets: Fix list mode to show the correct suffix
Joel Holdsworth [Sun, 19 Jan 2014 14:32:16 +0000 (14:32 +0000)]
SweepTimingWidgets: Fix list mode to show the correct suffix

10 years agoSweepTimingWidget implemented show_125_list
Joel Holdsworth [Sun, 19 Jan 2014 13:49:12 +0000 (13:49 +0000)]
SweepTimingWidget implemented show_125_list

10 years agoSweepTimingWidget removed Read Only support
Joel Holdsworth [Sat, 18 Jan 2014 22:43:56 +0000 (22:43 +0000)]
SweepTimingWidget removed Read Only support

10 years agoSet LIMIT_FRAMES to 1 if supported.
Martin Ling [Tue, 14 Jan 2014 20:59:08 +0000 (20:59 +0000)]
Set LIMIT_FRAMES to 1 if supported.

10 years agoUse SR_CONF_DEVICE_OPTIONS to decide if LIMIT_SAMPLES is supported.
Martin Ling [Tue, 14 Jan 2014 20:36:53 +0000 (20:36 +0000)]
Use SR_CONF_DEVICE_OPTIONS to decide if LIMIT_SAMPLES is supported.

10 years agoOnly attempt to set default sample count if supported.
Martin Ling [Tue, 14 Jan 2014 20:26:29 +0000 (20:26 +0000)]
Only attempt to set default sample count if supported.

10 years agoCommit sample count after setting default.
Martin Ling [Tue, 14 Jan 2014 20:17:50 +0000 (20:17 +0000)]
Commit sample count after setting default.

10 years agoWait until SDI is set before updating sweep timing widgets.
Martin Ling [Tue, 14 Jan 2014 20:12:26 +0000 (20:12 +0000)]
Wait until SDI is set before updating sweep timing widgets.

10 years agoNo longer need to set sample limit on session start.
Martin Ling [Tue, 14 Jan 2014 20:00:49 +0000 (20:00 +0000)]
No longer need to set sample limit on session start.

10 years agoShow sample count selector only if setting supported.
Martin Ling [Tue, 14 Jan 2014 19:59:49 +0000 (19:59 +0000)]
Show sample count selector only if setting supported.

10 years agoUse a SweepTimingWidget for sample count limit.
Martin Ling [Mon, 13 Jan 2014 01:17:56 +0000 (01:17 +0000)]
Use a SweepTimingWidget for sample count limit.

10 years agoCreated pv::widgets::SampleTimingWidget, and ported the SamplingBar to use it.
Joel Holdsworth [Mon, 30 Dec 2013 13:02:06 +0000 (14:02 +0100)]
Created pv::widgets::SampleTimingWidget, and ported the SamplingBar to use it.

This widget allows the user to edit a sample timing value either from
a list of options, or as an value with a min/max/step, or as read
only, or hidden.

10 years agoFeed analog data into separate deinterleaved analog data objects per channel
Joel Holdsworth [Sat, 18 Jan 2014 21:32:01 +0000 (21:32 +0000)]
Feed analog data into separate deinterleaved analog data objects per channel

10 years agoAdded AnalogSignal::analog_data accessor function
Joel Holdsworth [Sat, 18 Jan 2014 21:09:38 +0000 (21:09 +0000)]
Added AnalogSignal::analog_data accessor function

10 years agoLogicSignal: Tidyup boost references
Joel Holdsworth [Sat, 18 Jan 2014 21:07:04 +0000 (21:07 +0000)]
LogicSignal: Tidyup boost references

10 years agoSigSession: Added signal_from_probe
Joel Holdsworth [Sat, 18 Jan 2014 20:55:38 +0000 (20:55 +0000)]
SigSession: Added signal_from_probe

10 years agoSigSession: Tidied update_signals
Joel Holdsworth [Sat, 18 Jan 2014 16:04:07 +0000 (16:04 +0000)]
SigSession: Tidied update_signals

10 years agoRemoved duplicated source listing of wellarray.cpp
Joel Holdsworth [Tue, 14 Jan 2014 22:44:23 +0000 (22:44 +0000)]
Removed duplicated source listing of wellarray.cpp

10 years agoQWellArray: Removed QT_NO_MENU functionality
Joel Holdsworth [Sat, 18 Jan 2014 10:12:03 +0000 (10:12 +0000)]
QWellArray: Removed QT_NO_MENU functionality

This fixes bug #265

10 years agoQWellArray: Removed dead code
Joel Holdsworth [Sat, 18 Jan 2014 10:11:26 +0000 (10:11 +0000)]
QWellArray: Removed dead code

10 years agoQWellArray: removed unused destructor
Joel Holdsworth [Sat, 18 Jan 2014 10:10:35 +0000 (10:10 +0000)]
QWellArray: removed unused destructor

10 years agopv::view::View::set_zoom: Added doxygen comment
Joel Holdsworth [Fri, 17 Jan 2014 18:48:39 +0000 (18:48 +0000)]
pv::view::View::set_zoom: Added doxygen comment

10 years agopv::view::View::zoom_fit: clamp the scale between MaxScale and MinScale
Joel Holdsworth [Fri, 17 Jan 2014 18:48:08 +0000 (18:48 +0000)]
pv::view::View::zoom_fit: clamp the scale between MaxScale and MinScale

Fixes #278