mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07: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.
|
#in the next section to remove that particular feature from compilation.
|
||||||
# NO space,TABs after the "\" sign.
|
# NO space,TABs after the "\" sign.
|
||||||
APP_CFLAGS = -DWITH_CRC \
|
APP_CFLAGS = -DWITH_CRC \
|
||||||
-DWITH_ISO18092 \
|
|
||||||
-DON_DEVICE \
|
-DON_DEVICE \
|
||||||
-DWITH_LF \
|
-DWITH_LF \
|
||||||
-DWITH_HITAG \
|
-DWITH_HITAG \
|
||||||
|
|
|
@ -369,7 +369,9 @@ void SendStatus(void) {
|
||||||
BigBuf_print_status();
|
BigBuf_print_status();
|
||||||
Fpga_print_status();
|
Fpga_print_status();
|
||||||
Flashmem_print_status();
|
Flashmem_print_status();
|
||||||
|
#ifdef WITH_SMARTCARD
|
||||||
SmartCard_print_status();
|
SmartCard_print_status();
|
||||||
|
#endif
|
||||||
printConfig(); //LF Sampling config
|
printConfig(); //LF Sampling config
|
||||||
printUSBSpeed();
|
printUSBSpeed();
|
||||||
Dbprintf("Various");
|
Dbprintf("Various");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue