mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
Clean up pcf7931
@iceman1001 s cleanup of pcf7931 commands on client side and split out pcf7931 from lfops.c as it is getting large
This commit is contained in:
parent
be6250d31b
commit
d10e08ae6e
8 changed files with 695 additions and 640 deletions
|
@ -13,17 +13,23 @@
|
|||
#define CMDLFPCF7931_H__
|
||||
|
||||
struct pcf7931_config{
|
||||
uint8_t password[7];
|
||||
uint16_t init_delay;
|
||||
int16_t offset[2];
|
||||
uint8_t Pwd[7];
|
||||
uint16_t InitDelay;
|
||||
int16_t OffsetWidth;
|
||||
int16_t OffsetPosition;
|
||||
};
|
||||
|
||||
int pcf7931_resetConfig();
|
||||
int pcf7931_printConfig();
|
||||
|
||||
int usage_pcf7931_read();
|
||||
int usage_pcf7931_write();
|
||||
int usage_pcf7931_config();
|
||||
|
||||
int CmdLFPCF7931(const char *Cmd);
|
||||
|
||||
int CmdLFPCF7931Read(const char *Cmd);
|
||||
|
||||
int CmdLFPCF7931Write(const char *Cmd);
|
||||
|
||||
int CmdLFPCF7931Config(const char *Cmd);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue