]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/apps.h
send LF commands to TAG (locomread)
[proxmark3-svn] / armsrc / apps.h
1 //-----------------------------------------------------------------------------
2 // Definitions internal to the app source.
3 // Jonathan Westhues, Aug 2005
4 // Added ISO14443-A support by Gerhard de Koning Gans, April 2008
5 //-----------------------------------------------------------------------------
6
7 #ifndef __APPS_H
8 #define __APPS_H
9
10 /// appmain.c
11 void AppMain(void);
12 void DbpIntegers(int a, int b, int c);
13 void DbpString(char *str);
14 void SpinDelay(int ms);
15 void SpinDelayUs(int us);
16 void ToSendStuffBit(int b);
17 void ToSendReset(void);
18 void AcquireRawAdcSamples125k(BOOL at134khz);
19 void DoAcquisition125k(BOOL at134khz);
20 extern int ToSendMax;
21 extern BYTE ToSend[];
22 extern DWORD BigBuf[];
23
24 /// fpga.c
25 void FpgaSendCommand(WORD cmd, WORD v);
26 void FpgaWriteConfWord(BYTE v);
27 void FpgaDownloadAndGo(void);
28 void FpgaSetupSsc(void);
29 void SetupSpi(int mode);
30 void FpgaSetupSscDma(BYTE *buf, int len);
31 void SetAdcMuxFor(int whichGpio);
32
33 // Definitions for the FPGA commands.
34 #define FPGA_CMD_SET_CONFREG (1<<12)
35 #define FPGA_CMD_SET_DIVISOR (2<<12)
36 // Definitions for the FPGA configuration word.
37 #define FPGA_MAJOR_MODE_LF_READER (0<<5)
38 #define FPGA_MAJOR_MODE_LF_SIMULATOR (1<<5)
39 #define FPGA_MAJOR_MODE_HF_READER_TX (2<<5)
40 #define FPGA_MAJOR_MODE_HF_READER_RX_XCORR (3<<5)
41 #define FPGA_MAJOR_MODE_HF_SIMULATOR (4<<5)
42 #define FPGA_MAJOR_MODE_HF_ISO14443A (5<<5)
43 #define FPGA_MAJOR_MODE_UNUSED (6<<5)
44 #define FPGA_MAJOR_MODE_OFF (7<<5)
45 // Options for the LF reader
46 #define FPGA_LF_READER_USE_125_KHZ (1<<3)
47 #define FPGA_LF_READER_USE_134_KHZ (0<<3)
48 // Options for the HF reader, tx to tag
49 #define FPGA_HF_READER_TX_SHALLOW_MOD (1<<0)
50 // Options for the HF reader, correlating against rx from tag
51 #define FPGA_HF_READER_RX_XCORR_848_KHZ (1<<0)
52 #define FPGA_HF_READER_RX_XCORR_SNOOP (1<<1)
53 // Options for the HF simulated tag, how to modulate
54 #define FPGA_HF_SIMULATOR_NO_MODULATION (0<<0)
55 #define FPGA_HF_SIMULATOR_MODULATE_BPSK (1<<0)
56 // Options for ISO14443A
57 #define FPGA_HF_ISO14443A_SNIFFER (0<<0)
58 #define FPGA_HF_ISO14443A_TAGSIM_LISTEN (1<<0)
59 #define FPGA_HF_ISO14443A_TAGSIM_MOD (2<<0)
60 #define FPGA_HF_ISO14443A_READER_LISTEN (3<<0)
61 #define FPGA_HF_ISO14443A_READER_MOD (4<<0)
62
63 /// iso14443.h
64 void SimulateIso14443Tag(void);
65 void AcquireRawAdcSamplesIso14443(DWORD parameter);
66 void ReadSRI512Iso14443(DWORD parameter);
67 void SnoopIso14443(void);
68
69 /// iso14443a.h
70 void SnoopIso14443a(void);
71 void SimulateIso14443aTag(int tagType, int TagUid); // ## simulate iso14443a tag
72 void ReaderIso14443a(DWORD parameter);
73
74 /// iso15693.h
75 void AcquireRawAdcSamplesIso15693(void);
76 void ReaderIso15693(DWORD parameter); // Simulate an ISO15693 reader - greg
77 void SimTagIso15693(DWORD parameter); // simulate an ISO15693 tag - greg
78
79 /// util.h
80 int strlen(char *str);
81 void *memcpy(void *dest, const void *src, int len);
82 void *memset(void *dest, int c, int len);
83 int memcmp(const void *av, const void *bv, int len);
84
85 #endif
Impressum, Datenschutz