Skip to content

Commit

Permalink
Merge pull request #1411 from bitte-ein-bit/fix/udev-rules
Browse files Browse the repository at this point in the history
Fix/udev rules
  • Loading branch information
peternewman committed May 2, 2018
2 parents 2d9df92 + 69b779f commit 81f8aca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions debian/ola.udev
Expand Up @@ -16,7 +16,7 @@ SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="10cf", ATTRS{idPro
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="16d0", ATTRS{idProduct}=="0830", GROUP="plugdev"

# udev rules for the Eurolite
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="fa63", GROUP="plugdev" MODE="660"
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="fa63", GROUP="plugdev", MODE="660"

# udev rules file for the karate-device
KERNEL=="ttyACM?", ATTRS{product}=="DMX2USB simple", SYMLINK+="kldmx0"
Expand All @@ -25,8 +25,8 @@ KERNEL=="ttyACM?", ATTRS{product}=="DMX2USB simple", SYMLINK+="kldmx0"
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="607a", GROUP="plugdev"

# udev rules for Ja Rule
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="aced", GROUP="plugdev" MODE="660"
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="acee", GROUP="plugdev" MODE="660"
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="aced", GROUP="plugdev", MODE="660"
SUBSYSTEM=="usb|usb_device", ACTION=="add", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="acee", GROUP="plugdev", MODE="660"

# udev rules for SPI
SUBSYSTEM=="spidev", MODE="0666"
2 changes: 1 addition & 1 deletion libs/acn/TransportHeader.h
Expand Up @@ -16,7 +16,7 @@
* TransportHeader.h
* Interface for the TransportHeader class.
* This holds the source IP of the packet which is used to address replies
* correctly. At some point in the future we should try to abtract the
* correctly. At some point in the future we should try to abstract the
* transport protocol (IP/UDP in this case).
* Copyright (C) 2011 Simon Newton
*/
Expand Down

0 comments on commit 81f8aca

Please sign in to comment.