Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

udev: add rule for STM32F103C8T6_CMSIS-DAP_SWOC CMSIS-DAP probe #1509

Merged
merged 2 commits into from
Mar 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions udev/50-cmsis-dap.rules
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ SUBSYSTEM=="usb", ATTR{idVendor}=="03eb", ATTR{idProduct}=="216c", MODE:="666"
# 03eb:2175 Microchip nEDBG CMSIS-DAP
SUBSYSTEM=="usb", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2175", MODE:="666"

# 0483:572a STMicroelectronics CMSIS-DAP
flit marked this conversation as resolved.
Show resolved Hide resolved
SUBSYSTEM=="usb", ATTR{idVendor}=="0483", ATTR{idProduct}=="572a", MODE:="666"

# If you share your linux system with other users, or just don't like the
# idea of write permission for everybody, you can replace MODE:="0666" with
# OWNER:="yourusername" to create the device owned by you, or with
Expand Down