bug #42516 spelling-error-in-binary

* stk500v2.c, avrftdi.c, usbasp.c: fixed spelling errors


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1319 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Rene Liebscher 2014-06-11 07:17:54 +00:00
parent 14ffb37cfd
commit 4ddd784940
4 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2014-06-11 Rene Liebscher <R.Liebscher@gmx.de>
bug #42516 spelling-error-in-binary
* stk500v2.c, avrftdi.c, usbasp.c: fixed spelling errors
2014-06-01 Rene Liebscher <R.Liebscher@gmx.de>
bug #42337 avrdude.conf updates for UM232H/CM232H

View File

@ -494,7 +494,7 @@ static int write_flush(avrftdi_t* pdata)
* avr has got the reset signal when we start sleeping.
* (it may be stuck in the USB stack or some USB hub)
*
* Add.: purge does NOT flush. It clears. Also, it is unkown, when the purge
* Add.: purge does NOT flush. It clears. Also, it is unknown, when the purge
* command actually arrives at the chip.
* Use read pin status command as sync.
*/
@ -765,7 +765,7 @@ static int avrftdi_open(PROGRAMMER * pgm, char *port)
pdata->tx_buffer_size = 2048;
break;
default:
log_warn("Found unkown device %x. I will do my ", pdata->ftdic->type);
log_warn("Found unknown device %x. I will do my ", pdata->ftdic->type);
log_warn("best to work with it, but no guarantees ...\n");
pdata->pin_limit = 8;
pdata->rx_buffer_size = pdata->ftdic->max_packet_size;

View File

@ -3065,7 +3065,7 @@ static int stk500v2_setparm(PROGRAMMER * pgm, unsigned char parm, unsigned char
// don't issue a write if the correct value is already set.
if (value == current_value && verbose > 2) {
avrdude_message("%s: Skipping paramter write; parameter value already set.\n", progname);
avrdude_message("%s: Skipping parameter write; parameter value already set.\n", progname);
return 0;
}

View File

@ -674,7 +674,7 @@ static int usbasp_spi_program_enable(PROGRAMMER * pgm, AVRPART * p)
usbasp_transmit(pgm, 1, USBASP_FUNC_ENABLEPROG, cmd, res, sizeof(res));
if ((nbytes != 1) | (res[0] != 0)) {
avrdude_message("%s: error: programm enable: target doesn't answer. %x \n",
avrdude_message("%s: error: program enable: target doesn't answer. %x \n",
progname, res[0]);
return -1;
}
@ -1029,7 +1029,7 @@ static int usbasp_tpi_program_enable(PROGRAMMER * pgm, AVRPART * p)
}
if(retry >= 10)
{
avrdude_message("%s: error: programm enable: target doesn't answer.\n", progname);
avrdude_message("%s: error: program enable: target doesn't answer.\n", progname);
return -1;
}