patch #7717 avrftdi_flash_write is broken
* avrftdi.c: fixed wrong buffer address initialization in paged_write bug #35296 Extraneous newlines in output. * main.c: fixed output of newlines at 100% progress git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk@1065 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
37e0f0e0b1
commit
f639ccc9a6
|
@ -1,3 +1,10 @@
|
|||
2012-02-04 Rene Liebscher <R.Liebscher@gmx.de>
|
||||
|
||||
patch #7717 avrftdi_flash_write is broken
|
||||
* avrftdi.c: fixed wrong buffer address initialization in paged_write
|
||||
bug #35296 Extraneous newlines in output.
|
||||
* main.c: fixed output of newlines at 100% progress
|
||||
|
||||
2012-02-03 Rene Liebscher <R.Liebscher@gmx.de>
|
||||
|
||||
patch #7715 FT4232H support
|
||||
|
|
|
@ -787,7 +787,7 @@ static int avrftdi_flash_write(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
|||
unsigned int blocksize;
|
||||
int use_lext_address = m->op[AVR_OP_LOAD_EXT_ADDR] != NULL;
|
||||
unsigned char buf[4*len+4], *bufptr = buf;
|
||||
unsigned char *buffer = m->buf;
|
||||
unsigned char *buffer = &m->buf[addr];
|
||||
unsigned char byte;
|
||||
|
||||
/* pre-check opcodes */
|
||||
|
|
|
@ -158,8 +158,8 @@ static void update_progress_tty (int percent, double etime, char *hdr)
|
|||
}
|
||||
|
||||
if (percent == 100) {
|
||||
if (!last) fprintf (stderr, "\n\n");
|
||||
last = 1;
|
||||
fprintf (stderr, "\n\n");
|
||||
}
|
||||
|
||||
setvbuf(stderr, (char*)NULL, _IOLBF, 0);
|
||||
|
|
Loading…
Reference in New Issue