Difference between revisions of "PulseView"
Jump to navigation
Jump to search
Uwe Hermann (talk | contribs) |
Uwe Hermann (talk | contribs) (Add link to the PulseView manual.) |
||
Line 11: | Line 11: | ||
* [[Protocol decoders|Protocol decoder]] support | * [[Protocol decoders|Protocol decoder]] support | ||
* Trace groups support | * Trace groups support | ||
== Manual == | |||
Please refer to the [https://sigrok.org/doc/pulseview/unstable/pulseview_manual.html PulseView manual] for a lot more information. | |||
== Download == | == Download == |
Revision as of 20:06, 3 October 2018
PulseView (sometimes abbreviated as "PV") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok.
It is licensed under the terms of the GNU GPL, version 3 or later.
Features
- Fast O(log N) signal rendering at all zoom levels.
- Protocol decoder support
- Trace groups support
Manual
Please refer to the PulseView manual for a lot more information.
Download
Binaries, distro packages and source code tarballs are available from Downloads.
Git:
$ git clone git://sigrok.org/pulseview.git
You can also browse the source code via gitweb.
Requirements
See Building#PulseView.
Building
See Linux#PulseView (or any other of the OS-specific instruction pages).
Additional notes:
- Use
PKG_CONFIG_PATH=/<prefix-of-libsigrok-installation>/lib/pkgconfig/
if libsigrok and libsigrokdecode are installed to a non-standard prefix. See also Building#Installing_to_a_non-standard_directory_using_LD_LIBRARY_PATH for more details. - To change the install prefix:
cmake -DCMAKE_INSTALL_PREFIX=<prefix-dir>/ ..
- To show compiler arguments during the build:
make VERBOSE=1
- To make a non-stripped debug build
cmake -DCMAKE_BUILD_TYPE=Debug ..
- To enable unit tests:
cmake -DENABLE_TESTS=y ..
- To enable decoders:
cmake -DENABLE_DECODE=y ..
- To disable -Werror:
cmake -DDISABLE_WERROR=y ..
- To build with clang:
CXX=clang++ cmake ..