mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
34 lines
1.3 KiB
C
34 lines
1.3 KiB
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 Indala commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDLFINDALA_H__
|
|
#define CMDLFINDALA_H__
|
|
|
|
#include <stdio.h> // sscanf
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "proxmark3.h" // Definitions, USB controls, etc
|
|
#include "ui.h" // PrintAndLog
|
|
#include "cmdparser.h" // CmdsParse, CmdsHelp
|
|
#include "lfdemod.h" // parityTest, bitbytes_to_byte
|
|
#include "util.h" // weigandparity
|
|
#include "protocols.h" // for T55xx config register definitions
|
|
#include "cmdmain.h"
|
|
#include "cmddata.h"
|
|
#include "cmdlf.h" // lf_read
|
|
|
|
int CmdLFINDALA(const char *Cmd);
|
|
|
|
int detectIndala(uint8_t *dest, size_t *size, uint8_t *invert);
|
|
int detectIndala26(uint8_t *bitStream, size_t *size, uint8_t *invert);
|
|
int detectIndala64(uint8_t *bitStream, size_t *size, uint8_t *invert);
|
|
int detectIndala224(uint8_t *bitStream, size_t *size, uint8_t *invert);
|
|
int demodIndala(void);
|
|
|
|
#endif
|