mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 12:41:49 +08:00
14 lines
330 B
C
14 lines
330 B
C
// Low frequency Kantech IOProx commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDLFIO_H__
|
|
#define CMDLFIO_H__
|
|
|
|
#include "common.h"
|
|
|
|
int CmdLFIO(const char *Cmd);
|
|
|
|
int demodIOProx(bool verbose);
|
|
int getIOProxBits(uint8_t version, uint8_t fc, uint16_t cn, uint8_t *bits);
|
|
|
|
#endif
|