Created
April 6, 2021 19:08
-
-
Save tjvr/3c406bddfe9ae0a3860a3a5e6b381a93 to your computer and use it in GitHub Desktop.
Raspberry Pi Pico/RP2040 udev rules
This file contains hidden or 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
# /etc/udev/rules.d/99-pico.rules | |
# Make an RP2040 in BOOTSEL mode writable by all users, so you can `picotool` | |
# without `sudo`. | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="2e8a", ATTRS{idProduct}=="0003", MODE="0666" | |
# Symlink an RP2040 running MicroPython from /dev/pico. | |
# | |
# Then you can `mpr connect $(realpath /dev/pico)`. | |
SUBSYSTEM=="tty", ATTRS{idVendor}=="2e8a", ATTRS{idProduct}=="0005", SYMLINK+="pico" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Then reload with the following:
sudo udevadm control --reload-rules && sudo udevadm trigger
The official/comprehensive udev rules for all raspberry pis can be seen in the picotool repo:
https://github.com/raspberrypi/picotool/blob/master/udev/99-picotool.rules
This udev (and the tool) are included in the
picotool
Debian package, which is currently available in the Debian testing repo:https://packages.debian.org/trixie/picotool