Add the default read_byte() and write_byte() methods here, too. Forgot
to commit these files in previous commit. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@685 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
afb13a9936
commit
41c5e95ab3
|
@ -19,6 +19,8 @@
|
|||
* par.c: (Ditto.)
|
||||
* pgm.c: (Ditto.)
|
||||
* safemode.c: (Ditto.)
|
||||
* serbb_posix.c: (Ditto.)
|
||||
* serbb_win32.c: (Ditto.)
|
||||
* stk500.c: (Ditto.)
|
||||
* stk500v2.c: (Ditto.)
|
||||
* term.c: (Ditto.)
|
||||
|
|
|
@ -305,6 +305,8 @@ void serbb_initpgm(PROGRAMMER *pgm)
|
|||
pgm->setpin = serbb_setpin;
|
||||
pgm->getpin = serbb_getpin;
|
||||
pgm->highpulsepin = serbb_highpulsepin;
|
||||
pgm->read_byte = avr_read_byte_default;
|
||||
pgm->write_byte = avr_write_byte_default;
|
||||
}
|
||||
|
||||
#endif /* WIN32NATIVE */
|
||||
|
|
|
@ -368,6 +368,8 @@ void serbb_initpgm(PROGRAMMER *pgm)
|
|||
pgm->setpin = serbb_setpin;
|
||||
pgm->getpin = serbb_getpin;
|
||||
pgm->highpulsepin = serbb_highpulsepin;
|
||||
pgm->read_byte = avr_read_byte_default;
|
||||
pgm->write_byte = avr_write_byte_default;
|
||||
}
|
||||
|
||||
#endif /* WIN32NATIVE */
|
||||
|
|
Loading…
Reference in New Issue