Contributed by Bram Daams:
Add the "atisp" programmer entry that makes use of negated signals. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@578 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
cee67f5f4b
commit
06a5af36ba
|
@ -1,3 +1,12 @@
|
|||
2006-04-13 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||
|
||||
* par.c: Add logic to negate parallel-port signals in
|
||||
avrdude.conf using a tilde.
|
||||
|
||||
Contributed by Bram Daams:
|
||||
* avrdude.conf.in: Add the "atisp" programmer entry that
|
||||
makes use of negated signals.
|
||||
|
||||
2006-03-28 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||
|
||||
* avrdude.conf.in: Add entries for AT90USB{64,128}{6,7}
|
||||
|
|
|
@ -492,6 +492,16 @@ programmer
|
|||
miso = 11;
|
||||
;
|
||||
|
||||
programmer
|
||||
id = "atisp";
|
||||
desc = "AT-ISP V1.1 programming cable for AVR-SDK1 from <http://micro-research.co.th/> micro-research.co.th";
|
||||
type = par;
|
||||
reset = ~6;
|
||||
sck = ~8;
|
||||
mosi = ~7;
|
||||
miso = ~10;
|
||||
;
|
||||
|
||||
@HAVE_PARPORT_END@
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue