fix 'hf iclass' (#879)

* add loooong timeout for UPDATE command
* add flags FLAG_ICLASS_READER_INIT and FLAG_ICLASS_READER_CLEARTRACE
* don't overwrite trace buffer during 'hf iclass dump'
* fix long waiting time when start_time==0 in TransmitTo15693Tag()
* remove some additional debug prints
* refactoring: move helper functions from protocols.c to cmdhficlass.c
* add 'h' and '1' options to 'hf iclass reader' (from RRG repository)
* use correct key when only CreditKey is given in 'hf iclass dump'
* separate select_and_auth
* DropField() on errors
* dump last block in 'hf iclass dump'
* display correct memory size (number of blocks) in 'hf iclass reader' and dump
* more whitespace fixes
This commit is contained in:
pwpiwi 2019-11-13 18:00:33 +01:00 committed by GitHub
commit 496bb4be33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 443 additions and 453 deletions

View file

@ -13,6 +13,6 @@
#define CMDHFICLASS_H__
int CmdHFiClass(const char *Cmd);
int HFiClassReader(const char *Cmd, bool loop, bool verbose);
int HFiClassReader(bool loop, bool verbose);
#endif