mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-16 02:03:00 -07:00
lf viking from other users - just put my spin on it lf awid refactored code - possible to make it not 26bit specific now with minor chanages lfdemod.c now supports extra debug printing if `data setdebug` = 2 when not on device (on client not arm)
16 lines
647 B
C
16 lines
647 B
C
//-----------------------------------------------------------------------------
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
// Low frequency T55xx commands
|
|
//-----------------------------------------------------------------------------
|
|
#ifndef CMDLFVIKING_H__
|
|
#define CMDLFVIKING_H__
|
|
int CmdLFViking(const char *Cmd);
|
|
int CmdVikingRead(const char *Cmd);
|
|
int CmdVikingClone(const char *Cmd);
|
|
int CmdVikingSim(static char *Cmd);
|
|
#endif
|
|
|