1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 12:51:22 +04:00

[NFC] Fix ISO15693 stucking in wrong mode. (#3988)

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
RebornedBrain
2024-12-19 00:01:20 +03:00
committed by GitHub
parent 8c4922a322
commit 9c96bbfc54

View File

@@ -243,6 +243,8 @@ static Iso15693ParserCommand iso15693_parser_parse_1_out_of_256(Iso15693Parser*
instance->parsed_frame, instance->next_byte_part * 4 + j / 2); instance->parsed_frame, instance->next_byte_part * 4 + j / 2);
} }
} }
} else {
instance->zero_found = true;
} }
} }
instance->next_byte_part = (instance->next_byte_part + 1) % 64; instance->next_byte_part = (instance->next_byte_part + 1) % 64;