mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-15 06:09:13 +08:00
f822a063b3
merged code and added arguments to data fskrawdemod to allow other fsk mode demodulations (FSK2a = RF/10 & RF/8) another might be (RF/8 & RF/5)
25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
// Copyright (C) 2014
|
|
//
|
|
// 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 commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef LFDEMOD_H__
|
|
#define LFDEMOD_H__
|
|
#include <stdint.h>
|
|
|
|
int DetectASKClock(uint8_t dest[], size_t size, int clock);
|
|
int askmandemod(uint8_t *BinStream,uint32_t *BitLen,int *clk, int *invert);
|
|
uint64_t Em410xDecode(uint8_t *BitStream,uint32_t BitLen);
|
|
int manrawdecode(uint8_t *BitStream, int *bitLen);
|
|
int BiphaseRawDecode(uint8_t * BitStream, int *bitLen, int offset);
|
|
int askrawdemod(uint8_t *BinStream, int *bitLen,int *clk, int *invert);
|
|
int HIDdemodFSK(uint8_t *dest, size_t size, uint32_t *hi2, uint32_t *hi, uint32_t *lo);
|
|
int IOdemodFSK(uint8_t *dest, size_t size);
|
|
int fskdemod(uint8_t *dest, size_t size, uint8_t rfLen, uint8_t invert, uint8_t fchigh, uint8_t fclow);
|
|
uint32_t bytebits_to_byte(uint8_t* src, int numbits);
|
|
|
|
#endif
|