Difference between revisions of "PulseView"

From sigrok
Jump to navigation Jump to search
m
Line 1: Line 1:
[[File:20121006-scroll-bars.png|thumb|320px|right|PulseView on KDE (06/10/2012)]]
[[File:PulseView I2C DS1307 Decode.png|320px|right|PulseView (10-Aug-2014)]]
[[File:Pulseview rigol 2 analog channels.png|thumb|320px|PulseView + scope]]
[[File:Pulseview rigol 2 analog channels.png|thumb|320px|PulseView + scope]]



Revision as of 10:37, 18 August 2014

PulseView (10-Aug-2014)
PulseView + scope

PulseView is a Qt based logic analyzer GUI for sigrok.

Features

Download

[Browse Source]

$ git clone git://sigrok.org/pulseview.git

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.
  • 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 ..
  • If cmake complains that it can only find Qt5, even though you have Qt4 installed: cmake -DQT_QMAKE_EXECUTABLE:string=qmake-qt4 ..

Resources