mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-27 22:45:27 +00:00
stk500v2_program_enable(): Fix a typo (synchloops vs. synchcycles).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@598 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2006-08-09 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
* stk500v2.c (stk500v2_program_enable): Fix a typo
|
||||||
|
(synchloops vs. synchcycles).
|
||||||
|
|
||||||
2006-08-04 Joerg Wunsch <j@uriah.heep.sax.de>
|
2006-08-04 Joerg Wunsch <j@uriah.heep.sax.de>
|
||||||
|
|
||||||
* avrdude.conf.in: Add parallel programming definitions for
|
* avrdude.conf.in: Add parallel programming definitions for
|
||||||
|
@@ -504,7 +504,7 @@ static int stk500v2_program_enable(PROGRAMMER * pgm, AVRPART * p)
|
|||||||
buf[1] = p->timeout;
|
buf[1] = p->timeout;
|
||||||
buf[2] = p->stabdelay;
|
buf[2] = p->stabdelay;
|
||||||
buf[3] = p->cmdexedelay;
|
buf[3] = p->cmdexedelay;
|
||||||
buf[4] = p->synchcycles;
|
buf[4] = p->synchloops;
|
||||||
buf[5] = p->bytedelay;
|
buf[5] = p->bytedelay;
|
||||||
buf[6] = p->pollvalue;
|
buf[6] = p->pollvalue;
|
||||||
buf[7] = p->pollindex;
|
buf[7] = p->pollindex;
|
||||||
|
Reference in New Issue
Block a user