Skip to content

Commit

Permalink
Increase delay in sign()
Browse files Browse the repository at this point in the history
Calling sign() with 60ms of delay is not ok on ECC608, while it works just fine on 508. 70ms looks fine for both.
  • Loading branch information
facchinm committed Jun 17, 2019
1 parent 5bfb0b3 commit 600f296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ECCX08.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ int ECCX08Class::sign(int slot, byte signature[])
return 0;
}

delay(60);
delay(70);

if (!receiveResponse(signature, 64)) {
return 0;
Expand Down

0 comments on commit 600f296

Please sign in to comment.