mirror of
https://github.com/ole00/afterburner.git
synced 2025-02-16 19:31:15 +00:00
pc app: wait a bit longer when processing fuses
This commit is contained in:
parent
ba3caf3a15
commit
7ff02e0a8d
@ -921,7 +921,7 @@ static char operationWriteOrVerify(char doWrite) {
|
||||
|
||||
// write command
|
||||
if (doWrite) {
|
||||
result = sendGenericCommand("w\r", "write failed ?", 4000, 0);
|
||||
result = sendGenericCommand("w\r", "write failed ?", 6000, 0);
|
||||
if (result) {
|
||||
goto finish;
|
||||
}
|
||||
@ -929,7 +929,7 @@ static char operationWriteOrVerify(char doWrite) {
|
||||
|
||||
// verify command
|
||||
if (opVerify) {
|
||||
result = sendGenericCommand("v\r", "verify failed ?", 4000, 0);
|
||||
result = sendGenericCommand("v\r", "verify failed ?", 6000, 0);
|
||||
}
|
||||
finish:
|
||||
closeSerial();
|
||||
@ -1166,7 +1166,7 @@ static char operationReadFuses(void) {
|
||||
|
||||
//READ_FUSE command
|
||||
sprintf(buf, "r\r");
|
||||
readSize = sendLine(buf, GALBUFSIZE, 5000);
|
||||
readSize = sendLine(buf, GALBUFSIZE, 8000);
|
||||
if (readSize < 0) {
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user