Merge pull request #844 from MCUdude/jtagmkii-retry-attempts

jtagmkii: Reduce the number of sync attempts to 10 + print number of attempts
This commit is contained in:
Jörg Wunsch 2022-01-21 21:27:30 +01:00 committed by GitHub
commit 1b8b1d69e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 7 deletions

2
NEWS
View File

@ -846,7 +846,7 @@ Version 4.3.0:
* Added "Troubleshooting"-Appendix to the manual.
* Add ATmega8515 support.
Contributed by: Matthias Weißer <matthias@matwei.de>
Contributed by: Matthias Weißer <matthias@matwei.de>
* Add ATmega64 support.
Contributed by: Erik Christiansen <erik@dd.nec.com.au>

View File

@ -675,7 +675,7 @@ int jtagmkII_recv(PROGRAMMER * pgm, unsigned char **msg) {
int jtagmkII_getsync(PROGRAMMER * pgm, int mode) {
int tries;
#define MAXTRIES 33
#define MAXTRIES 10
unsigned char buf[3], *resp, c = 0xff;
int status;
unsigned int fwver, hwver;
@ -696,15 +696,14 @@ int jtagmkII_getsync(PROGRAMMER * pgm, int mode) {
/* Get the sign-on information. */
buf[0] = CMND_GET_SIGN_ON;
avrdude_message(MSG_NOTICE2, "%s: jtagmkII_getsync(): Sending sign-on command: ",
progname);
avrdude_message(MSG_NOTICE2, "%s: jtagmkII_getsync() attempt %d of %d: Sending sign-on command: ",
progname, tries + 1, MAXTRIES);
jtagmkII_send(pgm, buf, 1);
status = jtagmkII_recv(pgm, &resp);
if (status <= 0) {
avrdude_message(MSG_INFO, "%s: jtagmkII_getsync(): sign-on command: "
"status %d\n",
progname, status);
avrdude_message(MSG_INFO, "%s: jtagmkII_getsync() attempt %d of %d: sign-on command: status %d\n",
progname, tries + 1, MAXTRIES, status);
} else if (verbose >= 3) {
putc('\n', stderr);
jtagmkII_prmsg(pgm, resp, status);