-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from nuket/master
Add rules for a Saleae Logic 8 in 2016.
- Loading branch information
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
#Rules for the Saleae Logic analyzer to allow to run the programs a normal user | ||
#being part of the plugdev group. Simply copy the file to /etc/udev/rules.d/ | ||
#and plug the device | ||
# Rules for the Saleae Logic analyzer to allow to run the programs a normal user | ||
# being part of the plugdev group. Simply copy the file to /etc/udev/rules.d/ | ||
# and plug the device | ||
|
||
BUS!="usb", ACTION!="add", SUBSYSTEM!=="usb_device", GOTO="saleae_logic_rules_end" | ||
|
||
# Saleae Logic analyzer (USB Based) | ||
# Bus 006 Device 006: ID 0925:3881 Lakeview Research | ||
SYSFS{idVendor}=="0925", SYSFS{idProduct}=="3881", MODE="664", GROUP="plugdev" | ||
# Bus 001 Device 009: ID 21a9:1004 Product: Logic S/16, Manufacturer: Saleae LLC | ||
|
||
LABEL="saleae_logic_rules_end" | ||
ATTR{idVendor}=="0925", ATTR{idProduct}=="3881", MODE="664", GROUP="plugdev" | ||
ATTR{idVendor}=="21a9", ATTR{idProduct}=="1004", MODE="664", GROUP="plugdev" | ||
|
||
LABEL="saleae_logic_rules_end" |