mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
new parameter in struct due to new function 4x50_restore
This commit is contained in:
parent
fcd9d6d1e8
commit
decabbae0c
1 changed files with 4 additions and 2 deletions
|
@ -39,6 +39,7 @@
|
||||||
#define STATUS_LOGIN 0x1
|
#define STATUS_LOGIN 0x1
|
||||||
#define NO_CHARS_MAX 400
|
#define NO_CHARS_MAX 400
|
||||||
#define TIMEOUT 2000
|
#define TIMEOUT 2000
|
||||||
|
#define RESTORE_DEFAULT_FILENAME "lf-4x50restore.bin"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
bool addr_given;
|
bool addr_given;
|
||||||
|
@ -47,10 +48,11 @@ typedef struct {
|
||||||
uint32_t password2;
|
uint32_t password2;
|
||||||
uint32_t word;
|
uint32_t word;
|
||||||
uint32_t addresses;
|
uint32_t addresses;
|
||||||
} em4x50_data_t;
|
uint8_t data[136];
|
||||||
|
} PACKED em4x50_data_t;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t byte[4];
|
uint8_t byte[4];
|
||||||
} em4x50_word_t;
|
} PACKED em4x50_word_t;
|
||||||
|
|
||||||
#endif /* EM4X50_H__ */
|
#endif /* EM4X50_H__ */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue