2017-01-05 01:51:47 +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-14 16:20:34 +02:00
|
|
|
// Low frequency fdx-b tag commands
|
2017-01-05 01:51:47 +01:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDLFFDX_H__
|
|
|
|
#define CMDLFFDX_H__
|
2019-08-08 16:57:33 +02:00
|
|
|
|
|
|
|
#include "common.h"
|
2017-01-05 15:56:52 +01:00
|
|
|
|
2019-04-06 00:38:22 +02:00
|
|
|
int CmdLFFdx(const char *Cmd);
|
2019-04-12 01:55:25 +02:00
|
|
|
int detectFDXB(uint8_t *dest, size_t *size);
|
|
|
|
int demodFDX(void);
|
2017-01-05 01:51:47 +01:00
|
|
|
int getFDXBits(uint64_t national_id, uint16_t country, uint8_t isanimal, uint8_t isextended, uint32_t extended, uint8_t *bits);
|
2017-07-30 09:17:48 +02:00
|
|
|
|
2017-01-05 01:51:47 +01:00
|
|
|
#endif
|
|
|
|
|