Skip to content

Commit

Permalink
limit TD to fix crash and bump version
Browse files Browse the repository at this point in the history
worker not resetting to idle when TD is 0.0
  • Loading branch information
xMasterX committed Jun 12, 2024
1 parent a4588f7 commit 2ecfcd8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
dist/*
.vscode
.clang-format
.editorconfig
.editorconfig
.DS_Store
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## v1.4
- Fix worker being not in LFRFIDWorkerIdle before next key (limit TD to 0.1)
## v1.3
- New systems in RFID Fuzzer:
- IoProxXSF
Expand Down
4 changes: 2 additions & 2 deletions application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ App(
stack_size=2 * 1024,
fap_author="gid9798 xMasterX",
fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
fap_version="1.3",
fap_version="1.4",
targets=["f7"],
fap_description="Fuzzer for ibutton readers",
fap_icon="icons/ibutt_10px.png",
Expand Down Expand Up @@ -43,7 +43,7 @@ App(
stack_size=2 * 1024,
fap_author="gid9798 xMasterX",
fap_weburl="https://github.com/DarkFlippers/Multi_Fuzzer",
fap_version="1.3",
fap_version="1.4",
targets=["f7"],
fap_description="Fuzzer for lfrfid readers",
fap_icon="icons/rfid_10px.png",
Expand Down
2 changes: 1 addition & 1 deletion views/attack.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ FuzzerViewAttack* fuzzer_view_attack_alloc() {
FuzzerViewAttackModel * model,
{
model->time_delay = fuzzer_proto_get_def_idle_time();
model->time_delay_min = 0; // model->time_delay;
model->time_delay_min = 1; // model->time_delay;

model->emu_time = fuzzer_proto_get_def_emu_time();

Expand Down

0 comments on commit 2ecfcd8

Please sign in to comment.