mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
Merge pull request #1712 from merlokk/tk_fix
texkom simulation timeout and verbose fixes
This commit is contained in:
+1
-1
@@ -234,7 +234,7 @@ int HfSimulateTkm(uint8_t *uid, uint8_t modulation, uint32_t timeout) {
|
||||
|
||||
WDT_HIT();
|
||||
|
||||
if (startTime > 0 && startTime + timeout < GetTickCount())
|
||||
if (timeout > 0 && startTime + timeout < GetTickCount())
|
||||
break;
|
||||
|
||||
// in mV
|
||||
|
||||
@@ -574,7 +574,7 @@ static int CmdHFTexkomReader(const char *Cmd) {
|
||||
|
||||
if (cm) {
|
||||
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||
return read_texkom_uid(cm, true);
|
||||
return read_texkom_uid(cm, verbose);
|
||||
}
|
||||
|
||||
uint32_t samplesCount = 30000;
|
||||
|
||||
Reference in New Issue
Block a user