]>
Commit | Line | Data |
---|---|---|
15c4dc5a | 1 | //----------------------------------------------------------------------------- |
15c4dc5a | 2 | // Jonathan Westhues, Aug 2005 |
cee5a30d | 3 | // Gerhard de Koning Gans, April 2008, May 2011 |
bd20f8f4 | 4 | // |
5 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
6 | // at your option, any later version. See the LICENSE.txt file for the text of | |
7 | // the license. | |
8 | //----------------------------------------------------------------------------- | |
9 | // Definitions internal to the app source. | |
15c4dc5a | 10 | //----------------------------------------------------------------------------- |
11 | ||
12 | #ifndef __APPS_H | |
13 | #define __APPS_H | |
14 | ||
f7e3ed82 | 15 | #include <stdint.h> |
16 | #include <stddef.h> | |
d19929cb | 17 | #include "common.h" |
b8e461ff | 18 | #include "usb_cmd.h" |
4e12287d | 19 | #include "hitagS.h" |
902cb3c0 | 20 | #include "mifare.h" |
a631936e | 21 | #include "../common/crc32.h" |
117d9ec2 | 22 | #include "BigBuf.h" |
55eaed8f | 23 | |
1e262141 | 24 | extern const uint8_t OddByteParity[256]; |
1e262141 | 25 | extern int rsamples; // = 0; |
1e262141 | 26 | extern uint8_t trigger; |
15c4dc5a | 27 | |
28 | /// appmain.h | |
29 | void ReadMem(int addr); | |
30 | void __attribute__((noreturn)) AppMain(void); | |
31 | void SamyRun(void); | |
32 | //void DbpIntegers(int a, int b, int c); | |
33 | void DbpString(char *str); | |
34 | void Dbprintf(const char *fmt, ...); | |
d19929cb | 35 | void Dbhexdump(int len, uint8_t *d, bool bAsci); |
15c4dc5a | 36 | |
3b692427 | 37 | // ADC Vref = 3300mV, and an (10M+1M):1M voltage divider on the HF input can measure voltages up to 36300 mV |
050aa18b | 38 | #define MAX_ADC_HF_VOLTAGE_LOW 36300 |
3b692427 | 39 | // ADC Vref = 3300mV, and an (10000k+240k):240k voltage divider on the LF input can measure voltages up to 140800 mV |
050aa18b | 40 | #define MAX_ADC_HF_VOLTAGE_HIGH 140800 |
41 | #define MAX_ADC_LF_VOLTAGE 140800 | |
9ca155ba M |
42 | int AvgAdc(int ch); |
43 | ||
15c4dc5a | 44 | void ToSendStuffBit(int b); |
45 | void ToSendReset(void); | |
46 | void ListenReaderField(int limit); | |
15c4dc5a | 47 | extern int ToSendMax; |
f7e3ed82 | 48 | extern uint8_t ToSend[]; |
15c4dc5a | 49 | |
15c4dc5a | 50 | |
51 | /// lfops.h | |
f6d9fb17 MHS |
52 | extern uint8_t decimation; |
53 | extern uint8_t bits_per_sample ; | |
54 | extern bool averaging; | |
55 | ||
31abe49f | 56 | void AcquireRawAdcSamples125k(int divisor); |
21a615cb | 57 | void ModThenAcquireRawAdcSamples125k(uint32_t delay_off, uint32_t period_0, uint32_t period_1, uint8_t *command); |
15c4dc5a | 58 | void ReadTItag(void); |
f7e3ed82 | 59 | void WriteTItag(uint32_t idhi, uint32_t idlo, uint16_t crc); |
dc4300ba | 60 | |
15c4dc5a | 61 | void AcquireTiType(void); |
62 | void AcquireRawBitsTI(void); | |
63 | void SimulateTagLowFrequency(int period, int gap, int ledcontrol); | |
709665b5 | 64 | void SimulateTagLowFrequencyBidir(int divisor, int max_bitlen); |
be59094d | 65 | void CmdHIDsimTAG(int hi2, int hi, int lo, int ledcontrol); |
abd6112f | 66 | void CmdFSKsimTAG(uint16_t arg1, uint16_t arg2, size_t size, uint8_t *BitStream); |
67 | void CmdASKsimTag(uint16_t arg1, uint16_t arg2, size_t size, uint8_t *BitStream); | |
872e3d4d | 68 | void CmdPSKsimTag(uint16_t arg1, uint16_t arg2, size_t size, uint8_t *BitStream); |
be59094d | 69 | void CmdHIDdemodFSK(int findone, int *high2, int *high, int *low, int ledcontrol); |
dbf6e824 | 70 | void CmdAWIDdemodFSK(int findone, int *high, int *low, int ledcontrol); // Realtime demodulation mode for AWID26 |
66707a3b | 71 | void CmdEM410xdemod(int findone, int *high, int *low, int ledcontrol); |
a1f3bb12 | 72 | void CmdIOdemodFSK(int findone, int *high, int *low, int ledcontrol); |
9f669cb2 | 73 | void CopyIOtoT55x7(uint32_t hi, uint32_t lo); // Clone an ioProx card to T5557/T5567 |
5f84531b | 74 | void CopyHIDtoT55x7(uint32_t hi2, uint32_t hi, uint32_t lo, uint8_t longFMT, uint8_t preamble); // Clone an HID-like card to T5557/T5567 |
709665b5 | 75 | void CopyVikingtoT55xx(uint32_t block1, uint32_t block2, uint8_t Q5); |
2d4eae76 | 76 | void WriteEM410x(uint32_t card, uint32_t id_hi, uint32_t id_lo); |
3606ac0a | 77 | void CopyIndala64toT55x7(uint32_t hi, uint32_t lo); // Clone Indala 64-bit tag by UID to T55x7 |
78 | void CopyIndala224toT55x7(uint32_t uid1, uint32_t uid2, uint32_t uid3, uint32_t uid4, uint32_t uid5, uint32_t uid6, uint32_t uid7); // Clone Indala 224-bit tag by UID to T55x7 | |
66837a03 | 79 | void T55xxResetRead(void); |
54a942b0 | 80 | void T55xxWriteBlock(uint32_t Data, uint32_t Block, uint32_t Pwd, uint8_t PwdMode); |
8e99ec25 | 81 | void T55xxReadBlock(uint16_t arg0, uint8_t Block, uint32_t Pwd); |
be2d41b7 | 82 | void T55xxWakeUp(uint32_t Pwd); |
83 | void TurnReadLFOn(); | |
84 | //void T55xxReadTrace(void); | |
54a942b0 | 85 | void EM4xReadWord(uint8_t Address, uint32_t Pwd, uint8_t PwdMode); |
7666f460 | 86 | void EM4xWriteWord(uint32_t flag, uint32_t Data, uint32_t Pwd); |
2de26056 | 87 | void EM4xProtect(uint32_t flag, uint32_t Data, uint32_t Pwd); |
e04475c4 | 88 | void Cotag(uint32_t arg0); |
15c4dc5a | 89 | |
90 | /// iso14443.h | |
51d4f6f1 | 91 | void SimulateIso14443bTag(void); |
92 | void AcquireRawAdcSamplesIso14443b(uint32_t parameter); | |
93 | void ReadSTMemoryIso14443b(uint32_t); | |
94 | void RAMFUNC SnoopIso14443b(void); | |
7cf3ef20 | 95 | void SendRawCommand14443B(uint32_t, uint32_t, uint8_t, uint8_t[]); |
15c4dc5a | 96 | |
1e262141 | 97 | // Also used in iclass.c |
6a1f2d82 | 98 | void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *parity); |
3000dc4e | 99 | |
5cd9ec01 | 100 | void RAMFUNC SniffMifare(uint8_t param); |
8556b852 | 101 | |
5acd09bd | 102 | /// epa.h |
902cb3c0 | 103 | void EPA_PACE_Collect_Nonce(UsbCommand * c); |
3bb07d96 | 104 | void EPA_PACE_Replay(UsbCommand *c); |
5acd09bd | 105 | |
a631936e | 106 | // mifaredesfire.h |
0b4efbde | 107 | bool InitDesfireCard(); |
108 | void MifareSendCommand(uint8_t arg0,uint8_t arg1, uint8_t *datain); | |
109 | void MifareDesfireGetInformation(); | |
110 | void MifareDES_Auth1(uint8_t arg0,uint8_t arg1,uint8_t arg2, uint8_t *datain); | |
111 | void ReaderMifareDES(uint32_t param, uint32_t param2, uint8_t * datain); | |
112 | int DesfireAPDU(uint8_t *cmd, size_t cmd_len, uint8_t *dataout); | |
113 | size_t CreateAPDU( uint8_t *datain, size_t len, uint8_t *dataout); | |
a631936e | 114 | |
6e82300d | 115 | // cmd.h |
116 | bool cmd_receive(UsbCommand* cmd); | |
79a73ab2 | 117 | bool cmd_send(uint32_t cmd, uint32_t arg0, uint32_t arg1, uint32_t arg2, void* data, size_t len); |
6e82300d | 118 | |
15c4dc5a | 119 | #endif |