mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
compact capabilities
This commit is contained in:
parent
6401452eb6
commit
40480a49d8
1 changed files with 18 additions and 18 deletions
|
@ -139,30 +139,30 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t baudrate;
|
uint32_t baudrate;
|
||||||
bool via_fpc;
|
bool via_fpc :1;
|
||||||
// rdv4
|
// rdv4
|
||||||
bool compiled_with_flash;
|
bool compiled_with_flash :1;
|
||||||
bool compiled_with_smartcard;
|
bool compiled_with_smartcard :1;
|
||||||
bool compiled_with_fpc_usart;
|
bool compiled_with_fpc_usart :1;
|
||||||
bool compiled_with_fpc_usart_dev;
|
bool compiled_with_fpc_usart_dev :1;
|
||||||
bool compiled_with_fpc_usart_host;
|
bool compiled_with_fpc_usart_host :1;
|
||||||
// lf
|
// lf
|
||||||
bool compiled_with_lf;
|
bool compiled_with_lf :1;
|
||||||
bool compiled_with_hitag;
|
bool compiled_with_hitag :1;
|
||||||
// hf
|
// hf
|
||||||
bool compiled_with_hfsniff;
|
bool compiled_with_hfsniff :1;
|
||||||
bool compiled_with_iso14443a;
|
bool compiled_with_iso14443a :1;
|
||||||
bool compiled_with_iso14443b;
|
bool compiled_with_iso14443b :1;
|
||||||
bool compiled_with_iso15693;
|
bool compiled_with_iso15693 :1;
|
||||||
bool compiled_with_felica;
|
bool compiled_with_felica :1;
|
||||||
bool compiled_with_legicrf;
|
bool compiled_with_legicrf :1;
|
||||||
bool compiled_with_iclass;
|
bool compiled_with_iclass :1;
|
||||||
// misc
|
// misc
|
||||||
bool compiled_with_lcd;
|
bool compiled_with_lcd :1;
|
||||||
|
|
||||||
// rdv4
|
// rdv4
|
||||||
bool hw_available_flash;
|
bool hw_available_flash :1;
|
||||||
bool hw_available_smartcard;
|
bool hw_available_smartcard :1;
|
||||||
} PACKED capabilities_t;
|
} PACKED capabilities_t;
|
||||||
|
|
||||||
extern capabilities_t pm3_capabilities;
|
extern capabilities_t pm3_capabilities;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue