Created
March 27, 2014 12:32
-
-
Save TechplexEngineer/9806543 to your computer and use it in GitHub Desktop.
Put this file in ```/etc/udev/rules.d/20-avrispmkii.rules``` then restart the udev service to use the avrispmkII programmer.
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
| SUBSYSTEM!="usb_device", ACTION!="add", GOTO="avrisp_end" | |
| # Atmel Corp. JTAG ICE mkII | |
| ATTR{idVendor}=="03eb", ATTR{idProduct}=="2103", MODE="660", GROUP="dialout" | |
| # Atmel Corp. AVRISP mkII | |
| ATTR{idVendor}=="03eb", ATTR{idProduct}=="2104", MODE="660", GROUP="dialout" | |
| # Atmel Corp. Dragon | |
| ATTR{idVendor}=="03eb", ATTR{idProduct}=="2107", MODE="660", GROUP="dialout" | |
| LABEL="avrisp_end" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment