mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
add tracing functions (#784)
* add trace buffer for PCSC smartcard readers * new option 'p' in 'hf list' to select PCSC trace buffer * 'sc list' now supports PCSC smartcard readers * add 'hf list 14-4' for ISO 14443-4 protocol
This commit is contained in:
parent
3783c45af1
commit
53fb848a0a
6 changed files with 377 additions and 174 deletions
|
@ -929,7 +929,11 @@ static int CmdSmartSetClock(const char *Cmd){
|
|||
|
||||
|
||||
static int CmdSmartList(const char *Cmd) {
|
||||
CmdHFList("7816");
|
||||
if (UseAlternativeSmartcardReader) {
|
||||
CmdHFList("7816 p");
|
||||
} else {
|
||||
CmdHFList("7816");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue