mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-30 20:23:46 +08:00
chg: only print if compiled with smartcard flag
This commit is contained in:
parent
a968ea8c53
commit
0492df266c
2 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,6 @@ APP_INCLUDES = apps.h
|
|||
#in the next section to remove that particular feature from compilation.
|
||||
# NO space,TABs after the "\" sign.
|
||||
APP_CFLAGS = -DWITH_CRC \
|
||||
-DWITH_ISO18092 \
|
||||
-DON_DEVICE \
|
||||
-DWITH_LF \
|
||||
-DWITH_HITAG \
|
||||
|
|
|
@ -369,7 +369,9 @@ void SendStatus(void) {
|
|||
BigBuf_print_status();
|
||||
Fpga_print_status();
|
||||
Flashmem_print_status();
|
||||
#ifdef WITH_SMARTCARD
|
||||
SmartCard_print_status();
|
||||
#endif
|
||||
printConfig(); //LF Sampling config
|
||||
printUSBSpeed();
|
||||
Dbprintf("Various");
|
||||
|
|
Loading…
Reference in a new issue