From 41c5e95ab3cb33f71ea33dcc196adaeed3692247 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Mon, 20 Nov 2006 15:08:13 +0000 Subject: [PATCH] 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 --- ChangeLog | 2 ++ serbb_posix.c | 2 ++ serbb_win32.c | 2 ++ 3 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 9d94619f..ccd114d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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.) diff --git a/serbb_posix.c b/serbb_posix.c index 17337430..ea188375 100644 --- a/serbb_posix.c +++ b/serbb_posix.c @@ -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 */ diff --git a/serbb_win32.c b/serbb_win32.c index 6bedb63a..ed1e8d8a 100644 --- a/serbb_win32.c +++ b/serbb_win32.c @@ -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 */