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__
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "common.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
|