Sigrok: Difference between revisions
Add information about necessary dependencies of sigrok-cli, pulseview and friends |
what is sigrok? Link to sigrok, category:applications |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
[https://sigrok.org Sigrok] is an open-source cross-platform signal analysis software suite that supports device like oscilloscopes, thermometers and other data logging devices. | |||
<code>services.udev | For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the <code>libsigrok</code> package. To do so add the following to your config:<syntaxhighlight lang="nix"> | ||
services.udev = { | |||
enable = true; | |||
packages = [ pkgs.libsigrok ]; | |||
} | |||
</syntaxhighlight> | |||
[[Category:Applications]] |
Latest revision as of 20:19, 26 September 2024
Sigrok is an open-source cross-platform signal analysis software suite that supports device like oscilloscopes, thermometers and other data logging devices.
For Sigrok and Sigrok related software such as PulseView to work properly it is necessary to install udev rules that come with the libsigrok
package. To do so add the following to your config:
services.udev = {
enable = true;
packages = [ pkgs.libsigrok ];
}