mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
remove hw_available_fpc_usart_btaddon
This commit is contained in:
parent
02ea378e38
commit
6401452eb6
2 changed files with 0 additions and 7 deletions
|
@ -461,11 +461,8 @@ void SendCapabilities(void) {
|
||||||
#endif
|
#endif
|
||||||
#ifdef WITH_FPC_USART_HOST
|
#ifdef WITH_FPC_USART_HOST
|
||||||
capabilities.compiled_with_fpc_usart_host = true;
|
capabilities.compiled_with_fpc_usart_host = true;
|
||||||
// TODO
|
|
||||||
capabilities.hw_available_fpc_usart_btaddon = true;
|
|
||||||
#else
|
#else
|
||||||
capabilities.compiled_with_fpc_usart_host = false;
|
capabilities.compiled_with_fpc_usart_host = false;
|
||||||
capabilities.hw_available_fpc_usart_btaddon = false;
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef WITH_LF
|
#ifdef WITH_LF
|
||||||
capabilities.compiled_with_lf = true;
|
capabilities.compiled_with_lf = true;
|
||||||
|
|
|
@ -137,7 +137,6 @@ typedef struct {
|
||||||
uint16_t read_gap;
|
uint16_t read_gap;
|
||||||
} t55xx_config;
|
} t55xx_config;
|
||||||
|
|
||||||
// TODO add more fields to report all hw & sw capabilities of pm3
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t baudrate;
|
uint32_t baudrate;
|
||||||
bool via_fpc;
|
bool via_fpc;
|
||||||
|
@ -161,12 +160,9 @@ typedef struct {
|
||||||
// misc
|
// misc
|
||||||
bool compiled_with_lcd;
|
bool compiled_with_lcd;
|
||||||
|
|
||||||
// Following are not yet implemented:
|
|
||||||
// rdv4
|
// rdv4
|
||||||
bool hw_available_flash;
|
bool hw_available_flash;
|
||||||
bool hw_available_smartcard;
|
bool hw_available_smartcard;
|
||||||
// rdv4 bt addon
|
|
||||||
bool hw_available_fpc_usart_btaddon;
|
|
||||||
} PACKED capabilities_t;
|
} PACKED capabilities_t;
|
||||||
|
|
||||||
extern capabilities_t pm3_capabilities;
|
extern capabilities_t pm3_capabilities;
|
||||||
|
|
Loading…
Reference in a new issue