mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-12-19 19:40:10 +00:00
* usbasp.c: USB vid/pid/vendor/product from config file are used, for
id "usbasp" nibobee and old usbasp are tried as they were currently implemented within usbasp * avrdude.conf.in: added usb params to "usbasp", added new entry "nibobee" with params which were hardcoded in usbasp.c, and added an entry "usbasb-clone" which only checks vid/pid. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1040 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -570,6 +570,44 @@ programmer
|
||||
id = "usbasp";
|
||||
desc = "USBasp, http://www.fischl.de/usbasp/";
|
||||
type = usbasp;
|
||||
usbvid = 0x16C0; # VOTI
|
||||
usbpid = 0x05DC; # Obdev's free shared PID
|
||||
usbvendor = "www.fischl.de";
|
||||
usbproduct = "USBasp";
|
||||
|
||||
# following variants are autodetected for id "usbasp"
|
||||
|
||||
# original usbasp from fischl.de
|
||||
# see above "usbasp"
|
||||
|
||||
# old usbasp from fischl.de
|
||||
#usbvid = 0x03EB; # ATMEL
|
||||
#usbpid = 0xC7B4; # (unoffical) USBasp
|
||||
#usbvendor = "www.fischl.de";
|
||||
#usbproduct = "USBasp";
|
||||
|
||||
# NIBObee (only if -P nibobee is given on command line)
|
||||
# see below "nibobee"
|
||||
;
|
||||
|
||||
programmer
|
||||
id = "nibobee";
|
||||
desc = "NIBObee";
|
||||
type = usbasp;
|
||||
usbvid = 0x16C0; # VOTI
|
||||
usbpid = 0x092F; # NIBObee PID
|
||||
usbvendor = "www.nicai-systems.com";
|
||||
usbproduct = "NIBObee";
|
||||
;
|
||||
|
||||
programmer
|
||||
id = "usbasp-clone";
|
||||
desc = "Any usbasp clone with correct VID/PID";
|
||||
type = usbasp;
|
||||
usbvid = 0x16C0; # VOTI
|
||||
usbpid = 0x05DC; # Obdev's free shared PID
|
||||
#usbvendor = "";
|
||||
#usbproduct = "";
|
||||
;
|
||||
|
||||
programmer
|
||||
|
||||
Reference in New Issue
Block a user