2016-05-16 21:39:40 +02:00
|
|
|
// Low frequency Kantech IOProx commands
|
2014-03-21 07:45:18 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDLFIO_H__
|
|
|
|
#define CMDLFIO_H__
|
|
|
|
|
2019-08-08 16:57:33 +02:00
|
|
|
#include "common.h"
|
2017-07-30 09:17:48 +02:00
|
|
|
|
2019-04-06 00:38:22 +02:00
|
|
|
int CmdLFIO(const char *Cmd);
|
2014-03-21 07:45:18 +00:00
|
|
|
|
2019-04-12 01:55:25 +02:00
|
|
|
int demodIOProx(void);
|
2016-05-16 21:39:40 +02:00
|
|
|
int getIOProxBits(uint8_t version, uint8_t fc, uint16_t cn, uint8_t *bits);
|
2017-07-30 09:17:48 +02:00
|
|
|
|
2014-03-21 07:51:51 +00:00
|
|
|
#endif
|