mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 18:17:46 +08:00
16 lines
359 B
C
16 lines
359 B
C
|
#ifndef CMDLF_H__
|
||
|
#define CMDLF_H__
|
||
|
|
||
|
int CmdLF(const char *Cmd);
|
||
|
|
||
|
int CmdLFCommandRead(const char *Cmd);
|
||
|
int CmdFlexdemod(const char *Cmd);
|
||
|
int CmdIndalaDemod(const char *Cmd);
|
||
|
int CmdLFRead(const char *Cmd);
|
||
|
int CmdLFSim(const char *Cmd);
|
||
|
int CmdLFSimBidir(const char *Cmd);
|
||
|
int CmdLFSimManchester(const char *Cmd);
|
||
|
int CmdVchDemod(const char *Cmd);
|
||
|
|
||
|
#endif
|