mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
Make sure standalone modes can be launched when connected on USB without client
This commit is contained in:
parent
b7016e0bed
commit
d7614684f8
6 changed files with 72 additions and 35 deletions
|
@ -141,6 +141,7 @@ typedef struct {
|
|||
uint8_t version;
|
||||
uint32_t baudrate;
|
||||
bool via_fpc : 1;
|
||||
bool via_usb : 1;
|
||||
// rdv4
|
||||
bool compiled_with_flash : 1;
|
||||
bool compiled_with_smartcard : 1;
|
||||
|
@ -165,7 +166,7 @@ typedef struct {
|
|||
bool hw_available_flash : 1;
|
||||
bool hw_available_smartcard : 1;
|
||||
} PACKED capabilities_t;
|
||||
#define CAPABILITIES_VERSION 1
|
||||
#define CAPABILITIES_VERSION 2
|
||||
extern capabilities_t pm3_capabilities;
|
||||
|
||||
// For CMD_T55XX_WRITE_BLOCK
|
||||
|
@ -232,6 +233,7 @@ typedef struct {
|
|||
#define CMD_DOWNLOAD_EML_BIGBUF 0x0110
|
||||
#define CMD_DOWNLOADED_EML_BIGBUF 0x0111
|
||||
#define CMD_CAPABILITIES 0x0112
|
||||
#define CMD_QUIT_SESSION 0x0113
|
||||
|
||||
// RDV40, Flash memory operations
|
||||
#define CMD_FLASHMEM_READ 0x0120
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue