mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 05:43:23 -07:00
mifare firmware update
This commit is contained in:
parent
fa03a110e9
commit
32cfae439e
4 changed files with 197 additions and 6 deletions
|
@ -7,6 +7,10 @@
|
|||
#ifndef __APPS_H
|
||||
#define __APPS_H
|
||||
|
||||
#include "stdint.h"
|
||||
#include "stddef.h"
|
||||
typedef unsigned char byte_t;
|
||||
|
||||
// The large multi-purpose buffer, typically used to hold A/D samples,
|
||||
// maybe processed in some way.
|
||||
DWORD BigBuf[12000];
|
||||
|
@ -82,14 +86,15 @@ void SimulateTagLowFrequencyBidir(int divisor, int max_bitlen);
|
|||
void SimulateIso14443Tag(void);
|
||||
void AcquireRawAdcSamplesIso14443(DWORD parameter);
|
||||
void ReadSRI512Iso14443(DWORD parameter);
|
||||
void ReadSRIX4KIso14443(DWORD parameter);
|
||||
void ReadSTMemoryIso14443(DWORD parameter,DWORD dwLast);
|
||||
void ReadSRIX4KIso14443(DWORD parameter);
|
||||
void ReadSTMemoryIso14443(DWORD parameter,DWORD dwLast);
|
||||
void SnoopIso14443(void);
|
||||
|
||||
/// iso14443a.h
|
||||
void SnoopIso14443a(void);
|
||||
void SimulateIso14443aTag(int tagType, int TagUid); // ## simulate iso14443a tag
|
||||
void ReaderIso14443a(DWORD parameter);
|
||||
void ReaderMifare(DWORD parameter);
|
||||
|
||||
/// iso15693.h
|
||||
void AcquireRawAdcSamplesIso15693(void);
|
||||
|
@ -111,6 +116,9 @@ void *memcpy(void *dest, const void *src, int len);
|
|||
void *memset(void *dest, int c, int len);
|
||||
int memcmp(const void *av, const void *bv, int len);
|
||||
char *strncat(char *dest, const char *src, unsigned int n);
|
||||
void num_to_bytes(uint64_t n, size_t len, byte_t* dest);
|
||||
uint64_t bytes_to_num(byte_t* src, size_t len);
|
||||
|
||||
void SpinDelay(int ms);
|
||||
void SpinDelayUs(int us);
|
||||
void LED(int led, int ms);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue