Fix pseudo/full parallel mode selection logic.

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@210 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Brian S. Dean 2003-02-20 19:50:32 +00:00
parent 3628e7174f
commit 988a0c60cb
1 changed files with 6 additions and 4 deletions

View File

@ -448,10 +448,12 @@ static int stk500_initialize(PROGRAMMER * pgm, AVRPART * p)
else
buf[3] = 1; /* device supports parallel only */
if ((p->flags & AVRPART_PARALLELOK) && (p->flags & AVRPART_PSEUDOPARALLEL))
buf[4] = 1; /* full parallel interface */
else
buf[4] = 0; /* pseudo parallel interface */
if (p->flags & AVRPART_PARALLELOK) {
if (p->flags & AVRPART_PSEUDOPARALLEL)
buf[4] = 0; /* pseudo parallel interface */
else
buf[4] = 1; /* full parallel interface */
}
buf[5] = 1; /* polling supported - XXX need this in config file */
buf[6] = 1; /* programming is self-timed - XXX need in config file */