1 # UDEV Rules for Teensy boards, http://www.pjrc.com/teensy/
3 # The latest version of this file may be found at:
4 # http://www.pjrc.com/teensy/00-teensy.rules
6 # This file must be placed at:
8 # /etc/udev/rules.d/00-teensy.rules (preferred location)
10 # /lib/udev/rules.d/00-teensy.rules (req'd on some broken systems)
12 # To install, type this command in a terminal:
13 # sudo cp 00-teensy.rules /etc/udev/rules.d/00-teensy.rules
15 # After this file is installed, physically unplug and reconnect Teensy.
17 ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04*", ENV{ID_MM_DEVICE_IGNORE}="1", ENV{ID_MM_PORT_IGNORE}="1"
18 ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789a]*", ENV{MTP_NO_PROBE}="1"
19 KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04*", MODE:="0666", RUN:="/bin/stty -F /dev/%k raw -echo"
20 KERNEL=="hidraw*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04*", MODE:="0666"
21 SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04*", MODE:="0666"
22 KERNEL=="hidraw*", ATTRS{idVendor}=="1fc9", ATTRS{idProduct}=="013*", MODE:="0666"
23 SUBSYSTEMS=="usb", ATTRS{idVendor}=="1fc9", ATTRS{idProduct}=="013*", MODE:="0666"
26 # If you share your linux system with other users, or just don't like the
27 # idea of write permission for everybody, you can replace MODE:="0666" with
28 # OWNER:="yourusername" to create the device owned by you, or with
29 # GROUP:="somegroupname" and mange access using standard unix groups.
31 # ModemManager tends to interfere with USB Serial devices like Teensy.
32 # Problems manifest as the Arduino Serial Monitor missing some incoming
33 # data, and "Unable to open /dev/ttyACM0 for reboot request" when
34 # uploading. If you experience these problems, disable or remove
35 # ModemManager from your system. If you must use a modem, perhaps
36 # try disabling the "MM_FILTER_RULE_TTY_ACM_INTERFACE" ModemManager
37 # rule. Changing ModemManager's filter policy from "strict" to "default"
38 # may also help. But if you don't use a modem, completely removing
39 # the troublesome ModemManager is the most effective solution.