Benito

Comments

UDEV RULE for Bootloader Mode

As root (or sudo):

create file /etc/udev/rules.d/99-atmel.rules
with this as the contents:

--
SUBSYSTEM!="usb_device", ACTION!="add", GOTO="atmel_rules_end"

#AT90USB162 DFU
SYSFS{idVendor}=="03eb", SYSFS{idProduct}=="2ffa", GROUP="dialout", MODE="0660"

LABEL="atmel_rules_end"
--

run:
udevcontrol reload_rules

feel free to change the group to something that makes sense to you.