2017-01-27 10:49:34 +01:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-07-30 09:17:48 +02:00
|
|
|
// Authored by Iceman
|
2017-01-27 10:49:34 +01:00
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-07-30 09:17:48 +02:00
|
|
|
// Low frequency COTAG commands
|
2017-01-27 10:49:34 +01:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDLFCOTAG_H__
|
|
|
|
#define CMDLFCOTAG_H__
|
|
|
|
|
2019-08-08 16:57:33 +02:00
|
|
|
#include "common.h"
|
2017-01-27 10:49:34 +01:00
|
|
|
|
2017-02-02 19:15:36 +01:00
|
|
|
#ifndef COTAG_BITS
|
2017-02-03 00:07:55 +01:00
|
|
|
#define COTAG_BITS 264
|
2017-02-02 19:15:36 +01:00
|
|
|
#endif
|
|
|
|
|
2019-04-06 00:38:22 +02:00
|
|
|
int CmdLFCOTAG(const char *Cmd);
|
2019-04-12 01:55:25 +02:00
|
|
|
int demodCOTAG(void);
|
|
|
|
int readCOTAGUid(void);
|
2017-01-27 10:49:34 +01:00
|
|
|
#endif
|