2015-11-23 00:33:41 +08: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 22:20:34 +08:00
|
|
|
// Low frequency viking tag commands
|
2015-11-23 00:33:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2015-10-05 00:01:33 +08:00
|
|
|
#ifndef CMDLFVIKING_H__
|
|
|
|
#define CMDLFVIKING_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 CmdLFViking(const char *Cmd);
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2019-04-12 06:38:54 +08:00
|
|
|
int demodViking(void);
|
2019-06-08 03:26:03 +08:00
|
|
|
int detectViking(uint8_t *src, size_t *size);
|
2019-04-12 06:38:54 +08:00
|
|
|
uint64_t getVikingBits(uint32_t id);
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2015-10-05 00:01:33 +08:00
|
|
|
#endif
|
|
|
|
|