2
0
mirror of https://github.com/mariusgreuel/avrdude.git synced 2025-09-27 14:35:27 +00:00

Increased timeout passed to hid_read_timeout() - set to 10000 for consistency ()

This commit is contained in:
Nav
2022-03-31 22:26:53 +01:00
committed by GitHub
parent 0aa43968a0
commit e069871c8e

@@ -291,7 +291,7 @@ static int usbhid_recv(union filedescriptor *fd, unsigned char *buf, size_t nbyt
if (udev == NULL) if (udev == NULL)
return -1; return -1;
rv = i = hid_read_timeout(udev, buf, nbytes, 300); rv = i = hid_read_timeout(udev, buf, nbytes, 10000);
if (i != nbytes) if (i != nbytes)
avrdude_message(MSG_INFO, avrdude_message(MSG_INFO,
"%s: Short read, read only %d out of %u bytes\n", "%s: Short read, read only %d out of %u bytes\n",