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/avrdude@578 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
6f06530404
commit
855376ba00
|
@ -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>
|
2006-03-28 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* avrdude.conf.in: Add entries for AT90USB{64,128}{6,7}
|
* avrdude.conf.in: Add entries for AT90USB{64,128}{6,7}
|
||||||
|
|
|
@ -492,6 +492,16 @@ programmer
|
||||||
miso = 11;
|
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@
|
@HAVE_PARPORT_END@
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue