mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
Corrected indentation to tabs only
This commit is contained in:
parent
6ca4c6463e
commit
ae8e8a4372
1 changed files with 1416 additions and 1416 deletions
|
@ -173,14 +173,14 @@ void ReadTItag(void)
|
||||||
// when we read a TI tag we sample the zerocross line at 2Mhz
|
// when we read a TI tag we sample the zerocross line at 2Mhz
|
||||||
// TI tags modulate a 1 as 16 cycles of 123.2Khz
|
// TI tags modulate a 1 as 16 cycles of 123.2Khz
|
||||||
// TI tags modulate a 0 as 16 cycles of 134.2Khz
|
// TI tags modulate a 0 as 16 cycles of 134.2Khz
|
||||||
#define FSAMPLE 2000000
|
#define FSAMPLE 2000000
|
||||||
#define FREQLO 123200
|
#define FREQLO 123200
|
||||||
#define FREQHI 134200
|
#define FREQHI 134200
|
||||||
|
|
||||||
signed char *dest = (signed char *)BigBuf;
|
signed char *dest = (signed char *)BigBuf;
|
||||||
int n = sizeof(BigBuf);
|
int n = sizeof(BigBuf);
|
||||||
// int *dest = GraphBuffer;
|
// int *dest = GraphBuffer;
|
||||||
// int n = GraphTraceLen;
|
// int n = GraphTraceLen;
|
||||||
|
|
||||||
// 128 bit shift register [shift3:shift2:shift1:shift0]
|
// 128 bit shift register [shift3:shift2:shift1:shift0]
|
||||||
uint32_t shift3 = 0, shift2 = 0, shift1 = 0, shift0 = 0;
|
uint32_t shift3 = 0, shift2 = 0, shift1 = 0, shift0 = 0;
|
||||||
|
@ -330,7 +330,7 @@ void AcquireTiType(void)
|
||||||
int i, j, n;
|
int i, j, n;
|
||||||
// tag transmission is <20ms, sampling at 2M gives us 40K samples max
|
// tag transmission is <20ms, sampling at 2M gives us 40K samples max
|
||||||
// each sample is 1 bit stuffed into a uint32_t so we need 1250 uint32_t
|
// each sample is 1 bit stuffed into a uint32_t so we need 1250 uint32_t
|
||||||
#define TIBUFLEN 1250
|
#define TIBUFLEN 1250
|
||||||
|
|
||||||
// clear buffer
|
// clear buffer
|
||||||
memset(BigBuf,0,sizeof(BigBuf));
|
memset(BigBuf,0,sizeof(BigBuf));
|
||||||
|
@ -1349,7 +1349,7 @@ void CopyIndala64toT55x7(int hi, int lo)
|
||||||
2 << T55x7_MAXBLOCK_SHIFT,
|
2 << T55x7_MAXBLOCK_SHIFT,
|
||||||
0, 0, 0);
|
0, 0, 0);
|
||||||
//Alternative config for Indala (Extended mode;RF/32;PSK1 with RF/2;Maxblock=2;Inverse data)
|
//Alternative config for Indala (Extended mode;RF/32;PSK1 with RF/2;Maxblock=2;Inverse data)
|
||||||
// T5567WriteBlock(0x603E1042,0);
|
// T5567WriteBlock(0x603E1042,0);
|
||||||
|
|
||||||
DbpString("DONE!");
|
DbpString("DONE!");
|
||||||
|
|
||||||
|
@ -1373,7 +1373,7 @@ void CopyIndala224toT55x7(int uid1, int uid2, int uid3, int uid4, int uid5, int
|
||||||
7 << T55x7_MAXBLOCK_SHIFT,
|
7 << T55x7_MAXBLOCK_SHIFT,
|
||||||
0,0,0);
|
0,0,0);
|
||||||
//Alternative config for Indala (Extended mode;RF/32;PSK1 with RF/2;Maxblock=7;Inverse data)
|
//Alternative config for Indala (Extended mode;RF/32;PSK1 with RF/2;Maxblock=7;Inverse data)
|
||||||
// T5567WriteBlock(0x603E10E2,0);
|
// T5567WriteBlock(0x603E10E2,0);
|
||||||
|
|
||||||
DbpString("DONE!");
|
DbpString("DONE!");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue