2015-11-22 13:00:32 +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-03-26 03:51:31 +08:00
|
|
|
// Low frequency viking tag commands
|
2015-11-22 13:00:32 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDLFVIKING_H__
|
|
|
|
#define CMDLFVIKING_H__
|
2017-03-23 10:59:55 +08:00
|
|
|
extern int CmdLFViking(const char *Cmd);
|
|
|
|
extern int CmdVikingDemod(const char *Cmd);
|
|
|
|
extern int CmdVikingRead(const char *Cmd);
|
|
|
|
extern int CmdVikingClone(const char *Cmd);
|
|
|
|
extern int CmdVikingSim(const char *Cmd);
|
2015-11-22 13:00:32 +08:00
|
|
|
#endif
|