From 702a747114f756804652fde6677d8c25abffc1b3 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 5 Oct 2022 17:26:38 +0200 Subject: update example udev rules --- README | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README b/README index 53a2f27..a23e042 100644 --- a/README +++ b/README @@ -16,18 +16,20 @@ udev example rules DFU programmable Boards: ------------------------ -SUBSYSTEM=="usb", ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="*", GROUP="plugdev", MODE:="0660" +(something like this is likley is already installed via the avrdude package) +SUBSYSTEM=="usb", ATTR{idVendor}=="03eb", ATTR{idProduct}=="*", TAG+="uaccess" Teensy Boards: -------------- -SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", MODE:="0666" -KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", SYMLINK+="ttyUSB00%n", MODE:="0666", ENV{ID_MM_DEVICE_IGNORE}="1" +ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", ENV{ID_MM_DEVICE_IGNORE}="1" +ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", ENV{MTP_NO_PROBE}="1" +SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789]?", TAG+="uaccess" Arduino Boards: --------------- -SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="A6008hTA", SYMLINK+="arduino", OWNER="equinox", GROUP="equinox" +SUBSYSTEMS=="usb", KERNEL=="ttyUSB*", ATTRS{serial}=="A6008hTA", SYMLINK+="arduino", TAG+="uaccess" Replace "A6008hTA" with the serial of your arduino board. You can obtain it with the following command: -- cgit v1.2.3