-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Included Bloom's udev rules in codebase - somehow this wasn't include…
…d in the initial commit
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Linux udev rules for Bloom - see https://bloom.oscillate.io. | ||
# THIS IS AN AUTOMATICALLY GENERATED FILE - ANY CHANGES MADE WILL LIKELY BE LOST! | ||
|
||
SUBSYSTEM=="usb_device", GOTO="bloom_add_usb_device_rules" | ||
SUBSYSTEM!="usb", GOTO="bloom_end" | ||
|
||
LABEL="bloom_add_usb_device_rules" | ||
|
||
# Microchip Atmel-ICE | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2141", MODE="0666" | ||
|
||
# Microchip Power Debugger | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2144", MODE="0666" | ||
|
||
# JTAGICE3 | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2140", MODE="0666" | ||
|
||
# EDBG - debugger on Xplained Pro | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2111", MODE="0666" | ||
|
||
# mEDBG - debugger on Xplained Mini | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2145", MODE="0666" | ||
|
||
# PKOB nano (nEDBG) - debugger on Curiosity Nano | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2175", MODE="0666" | ||
|
||
# MPLAB PICkit 4 In-Circuit Debugger | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2177", MODE="0666" | ||
|
||
# MPLAB Snap In-Circuit Debugger | ||
ACTION=="add", ATTR{idVendor}=="03eb", ATTR{idProduct}=="2180", MODE="0666" | ||
|
||
LABEL="bloom_end" |