mirror of
https://github.com/TomNisbet/TommyPROM.git
synced 2024-11-21 19:31:12 +00:00
Print elapsed time for unlock in hardware verifier
This commit is contained in:
parent
4529343228
commit
82acfde3e3
@ -236,7 +236,11 @@ void loop()
|
||||
|
||||
case 'u':
|
||||
Serial.println(F("Writing the unlock code to disable Software Write Protect mode."));
|
||||
unsigned long timeStart = micros();
|
||||
prom.disableSoftwareWriteProtect();
|
||||
unsigned long timeEnd = micros();
|
||||
Serial.print("Unlock command time in uSec=");
|
||||
Serial.println(timeEnd - timeStart);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user