mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
Replace WITH_ISO14443a by dynamic detection in client
This commit is contained in:
parent
d7b53aacee
commit
e6135a8f78
11 changed files with 99 additions and 92 deletions
|
@ -87,6 +87,12 @@ bool IfPm3Iso14443b(void) {
|
|||
return pm3_capabilities.compiled_with_iso14443b;
|
||||
}
|
||||
|
||||
bool IfPm3Iso14443(void) {
|
||||
if (!IfPm3Present())
|
||||
return false;
|
||||
return pm3_capabilities.compiled_with_iso14443a || pm3_capabilities.compiled_with_iso14443b;
|
||||
}
|
||||
|
||||
bool IfPm3Iso15693(void) {
|
||||
if (!IfPm3Present())
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue