Skip to content

Instantly share code, notes, and snippets.

@julian-labuschagne
Last active October 28, 2018 17:38
Show Gist options
  • Save julian-labuschagne/19af181c3b793203bd393e113b651675 to your computer and use it in GitHub Desktop.
Save julian-labuschagne/19af181c3b793203bd393e113b651675 to your computer and use it in GitHub Desktop.
Arduino ISP programmer settings for Linux
###
# Arduino ISP
# https://store.arduino.cc/arduino-isp
#
# This file should be copied into your home directory
# It should be named: .avrduderc
###
programmer
id = "arduinoisp";
desc = "Arduino ISP Programmer";
type = "usbtiny";
connection_type = usb;
usbvid = 0x2341;
usbpid = 0x0049;
;
###
# udev rule to chagne the permissions of the ArduinoISP device.
# https://store.arduino.cc/arduino-isp
#
# This file should be copied to /etc/udev/rules.d/ directory.
# Its should be named: 80-arduino-isp.rules
###
SUBSYSTEM=="usb", ATTR{product}=="ArduinoISP", ATTR{idProduct}=="0049", ATTRS{idVendor}=="2341", MODE="0660", GROUP="dialout"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment