2016-05-17 03:39:40 +08:00
|
|
|
// Low frequency Kantech IOProx commands
|
2014-03-21 15:45:18 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDLFIO_H__
|
|
|
|
#define CMDLFIO_H__
|
|
|
|
|
2016-05-17 03:39:40 +08:00
|
|
|
#include <stdio.h> // sscanf
|
2017-07-30 15:17:48 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2016-05-17 03:39:40 +08:00
|
|
|
#include "proxmark3.h" // Definitions, USB controls, etc
|
|
|
|
#include "ui.h" // PrintAndLog
|
|
|
|
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
2018-03-06 03:07:29 +08:00
|
|
|
#include "lfdemod.h" // parityTest, bitbytes_to_byte
|
2016-05-17 03:39:40 +08:00
|
|
|
#include "util.h" // weigandparity
|
|
|
|
#include "protocols.h" // for T55xx config register definitions
|
|
|
|
#include "cmdmain.h"
|
|
|
|
#include "cmddata.h"
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
int CmdLFIO(const char *Cmd);
|
2014-03-21 15:45:18 +08:00
|
|
|
|
2019-04-12 07:55:25 +08:00
|
|
|
int demodIOProx(void);
|
2016-05-17 03:39:40 +08:00
|
|
|
int getIOProxBits(uint8_t version, uint8_t fc, uint16_t cn, uint8_t *bits);
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2014-03-21 15:51:51 +08:00
|
|
|
#endif
|