]> git.zerfleddert.de Git - proxmark3-svn/blame - common/lfdemod.h
lf demod additions
[proxmark3-svn] / common / lfdemod.h
CommitLineData
ba1a299c 1// Copyright (C) 2014
eb191de6 2//
3// This code is licensed to you under the terms of the GNU GPL, version 2 or,
4// at your option, any later version. See the LICENSE.txt file for the text of
5// the license.
6//-----------------------------------------------------------------------------
1e090a61 7// Low frequency demod related commands
8// marshmellow
9// note that many of these demods are not the slickest code and they often rely
10// on peaks and clock instead of converting to clean signal.
11//
eb191de6 12//-----------------------------------------------------------------------------
13
14#ifndef LFDEMOD_H__
15#define LFDEMOD_H__
16#include <stdint.h>
17
f822a063 18int DetectASKClock(uint8_t dest[], size_t size, int clock);
ba1a299c 19int askmandemod(uint8_t *BinStream, size_t *size, int *clk, int *invert);
20uint64_t Em410xDecode(uint8_t *BitStream,size_t size);
21int manrawdecode(uint8_t *BitStream, size_t *size);
1e090a61 22int BiphaseRawDecode(uint8_t * BitStream, size_t *size, int offset, int invert);
ba1a299c 23int askrawdemod(uint8_t *BinStream, size_t *size, int *clk, int *invert);
eb191de6 24int HIDdemodFSK(uint8_t *dest, size_t size, uint32_t *hi2, uint32_t *hi, uint32_t *lo);
25int IOdemodFSK(uint8_t *dest, size_t size);
f822a063 26int fskdemod(uint8_t *dest, size_t size, uint8_t rfLen, uint8_t invert, uint8_t fchigh, uint8_t fclow);
ba1a299c 27uint32_t bytebits_to_byte(uint8_t* src, size_t numbits);
28int pskNRZrawDemod(uint8_t *dest, size_t *size, int *clk, int *invert);
29int DetectpskNRZClock(uint8_t dest[], size_t size, int clock);
30int indala26decode(uint8_t *bitStream, size_t *size, uint8_t *invert);
31void pskCleanWave(uint8_t *bitStream, size_t size);
1e090a61 32int PyramiddemodFSK(uint8_t *dest, size_t size);
33int AWIDdemodFSK(uint8_t *dest, size_t size);
34size_t removeParity(uint8_t *BitStream, size_t startIdx, uint8_t pLen, uint8_t pType, size_t bLen);
35uint32_t countFC(uint8_t *BitStream, size_t size);
36int getHiLo(uint8_t *BitStream, size_t size, int *high, int *low, uint8_t fuzzHi, uint8_t fuzzLo);
eb191de6 37
eb191de6 38#endif
Impressum, Datenschutz