summaryrefslogtreecommitdiff
path: root/development/dfu-programmer/README
diff options
context:
space:
mode:
authorAndrzej Telszewski <atelszewski@gmail.com>2011-12-21 06:28:00 -0500
committerRobby Workman <rworkman@slackbuilds.org>2011-12-22 00:03:03 -0600
commit7bb560d5ca6f6f280a0ac2a2099b9c78fd55a171 (patch)
treeb6fb2113c3c8c7200553b836f448d3f3fe7291d8 /development/dfu-programmer/README
parent6c68fe54b8d4f81b9b1d6da1f6f6aee26b7bdbaf (diff)
downloadslackbuilds-7bb560d5ca6f6f280a0ac2a2099b9c78fd55a171.tar.gz
development/dfu-programmer: Added (USB programmer for USB AVR chips)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'development/dfu-programmer/README')
-rw-r--r--development/dfu-programmer/README17
1 files changed, 17 insertions, 0 deletions
diff --git a/development/dfu-programmer/README b/development/dfu-programmer/README
new file mode 100644
index 0000000000..f75afde793
--- /dev/null
+++ b/development/dfu-programmer/README
@@ -0,0 +1,17 @@
+dfu-programmer is a Device Firmware Update based USB programmer for
+Atmel chips with a USB bootloader.
+
+It seems to be working just fine with the LUFA based DFU Bootloader.
+(http://www.fourwalledcubicle.com/LUFA.php).
+
+
+You might want to add the following udev rule under /etc/udev/rules.d:
+
+SUBSYSTEM=="usb",ACTION=="add",ATTRS{idVendor}=="03eb",ATTRS{idProduct}=="2ff4",GROUP="plugdev"
+
+so when you plug the AVR chip to program, the USB devices becomes
+available to all the members of the "plugdev" group. Also, I found
+that the programmer doesn't work for non-root users when the
+"usbfs" is mounted on /proc/bus/usb, so my advice is to remove the
+"usbfs" entry from /etc/fstab if it is there (or maybe there is a
+ better solution).