]>
Commit | Line | Data |
---|---|---|
d10e08ae | 1 | #include "proxmark3.h" |
2 | #include "apps.h" | |
3 | #include "lfsampling.h" | |
4 | #include "pcf7931.h" | |
b8e461ff | 5 | #include "util.h" |
d10e08ae | 6 | #include "string.h" |
fc52fbd4 | 7 | #include "fpgaloader.h" |
d10e08ae | 8 | |
9 | #define T0_PCF 8 //period for the pcf7931 in us | |
10 | #define ALLOC 16 | |
11 | ||
818e15b0 S |
12 | size_t DemodPCF7931(uint8_t **outBlocks) { |
13 | uint8_t bits[256] = {0x00}; | |
d10e08ae | 14 | uint8_t blocks[8][16]; |
818e15b0 | 15 | uint8_t *dest = BigBuf_get_addr(); |
caaa4293 | 16 | |
d10e08ae | 17 | int GraphTraceLen = BigBuf_max_traceLen(); |
818e15b0 | 18 | if (GraphTraceLen > 18000) |
d10e08ae | 19 | GraphTraceLen = 18000; |
caaa4293 | 20 | |
d10e08ae | 21 | int i, j, lastval, bitidx, half_switch; |
22 | int clock = 64; | |
23 | int tolerance = clock / 8; | |
24 | int pmc, block_done; | |
25 | int lc, warnings = 0; | |
818e15b0 | 26 | size_t num_blocks = 0; |
d10e08ae | 27 | int lmin=128, lmax=128; |
28 | uint8_t dir; | |
3cec7061 | 29 | //clear read buffer |
29b75739 | 30 | BigBuf_Clear_keep_EM(); |
d10e08ae | 31 | |
32 | LFSetupFPGAForADC(95, true); | |
33 | DoAcquisition_default(0, true); | |
34 | ||
35 | lmin = 64; | |
36 | lmax = 192; | |
37 | ||
38 | i = 2; | |
39 | ||
40 | /* Find first local max/min */ | |
818e15b0 | 41 | if(dest[1] > dest[0]) { |
d10e08ae | 42 | while(i < GraphTraceLen) { |
818e15b0 | 43 | if( !(dest[i] > dest[i-1]) && dest[i] > lmax) |
d10e08ae | 44 | break; |
45 | i++; | |
46 | } | |
47 | dir = 0; | |
818e15b0 | 48 | } else { |
d10e08ae | 49 | while(i < GraphTraceLen) { |
818e15b0 | 50 | if( !(dest[i] < dest[i-1]) && dest[i] < lmin) |
d10e08ae | 51 | break; |
52 | i++; | |
53 | } | |
54 | dir = 1; | |
55 | } | |
56 | ||
57 | lastval = i++; | |
58 | half_switch = 0; | |
59 | pmc = 0; | |
60 | block_done = 0; | |
61 | ||
818e15b0 S |
62 | for (bitidx = 0; i < GraphTraceLen; i++) { |
63 | if ((dest[i-1] > dest[i] && dir == 1 && dest[i] > lmax) || (dest[i-1] < dest[i] && dir == 0 && dest[i] < lmin)) { | |
d10e08ae | 64 | lc = i - lastval; |
65 | lastval = i; | |
66 | ||
67 | // Switch depending on lc length: | |
68 | // Tolerance is 1/8 of clock rate (arbitrary) | |
cf194819 | 69 | if (ABS(lc-clock/4) < tolerance) { |
d10e08ae | 70 | // 16T0 |
71 | if((i - pmc) == lc) { /* 16T0 was previous one */ | |
72 | /* It's a PMC ! */ | |
73 | i += (128+127+16+32+33+16)-1; | |
74 | lastval = i; | |
75 | pmc = 0; | |
76 | block_done = 1; | |
818e15b0 | 77 | } else { |
d10e08ae | 78 | pmc = i; |
79 | } | |
cf194819 | 80 | } else if (ABS(lc-clock/2) < tolerance) { |
d10e08ae | 81 | // 32TO |
82 | if((i - pmc) == lc) { /* 16T0 was previous one */ | |
83 | /* It's a PMC ! */ | |
84 | i += (128+127+16+32+33)-1; | |
85 | lastval = i; | |
86 | pmc = 0; | |
87 | block_done = 1; | |
818e15b0 S |
88 | } else if(half_switch == 1) { |
89 | bits[bitidx++] = 0; | |
d10e08ae | 90 | half_switch = 0; |
91 | } | |
92 | else | |
93 | half_switch++; | |
cf194819 | 94 | } else if (ABS(lc-clock) < tolerance) { |
d10e08ae | 95 | // 64TO |
818e15b0 | 96 | bits[bitidx++] = 1; |
d10e08ae | 97 | } else { |
98 | // Error | |
818e15b0 | 99 | if (++warnings > 10) { |
d10e08ae | 100 | Dbprintf("Error: too many detection errors, aborting."); |
101 | return 0; | |
102 | } | |
103 | } | |
104 | ||
105 | if(block_done == 1) { | |
106 | if(bitidx == 128) { | |
818e15b0 S |
107 | for(j = 0; j < 16; ++j) { |
108 | blocks[num_blocks][j] = | |
109 | 128 * bits[j*8 + 7]+ | |
caaa4293 | 110 | 64 * bits[j*8 + 6] + |
818e15b0 S |
111 | 32 * bits[j*8 + 5] + |
112 | 16 * bits[j*8 + 4] + | |
113 | 8 * bits[j*8 + 3] + | |
114 | 4 * bits[j*8 + 2] + | |
115 | 2 * bits[j*8 + 1] + | |
116 | bits[j*8] | |
117 | ; | |
d10e08ae | 118 | } |
119 | num_blocks++; | |
120 | } | |
121 | bitidx = 0; | |
122 | block_done = 0; | |
123 | half_switch = 0; | |
124 | } | |
125 | if(i < GraphTraceLen) | |
818e15b0 | 126 | dir = (dest[i-1] > dest[i]) ? 0 : 1; |
d10e08ae | 127 | } |
128 | if(bitidx==255) | |
129 | bitidx=0; | |
130 | warnings = 0; | |
131 | if(num_blocks == 4) break; | |
132 | } | |
818e15b0 | 133 | memcpy(outBlocks, blocks, 16 * num_blocks); |
d10e08ae | 134 | return num_blocks; |
135 | } | |
136 | ||
818e15b0 S |
137 | bool IsBlock0PCF7931(uint8_t *block) { |
138 | // assuming all RFU bits are set to 0 | |
139 | // if PAC is enabled password is set to 0 | |
140 | if (block[7] == 0x01) | |
141 | { | |
142 | if (!memcmp(block, "\x00\x00\x00\x00\x00\x00\x00", 7) && !memcmp(block+9, "\x00\x00\x00\x00\x00\x00\x00", 7)) | |
143 | return true; | |
144 | } | |
145 | else if (block[7] == 0x00) | |
146 | { | |
147 | if (!memcmp(block+9, "\x00\x00\x00\x00\x00\x00\x00", 7)) | |
148 | return true; | |
149 | } | |
150 | return false; | |
d10e08ae | 151 | } |
152 | ||
818e15b0 S |
153 | bool IsBlock1PCF7931(uint8_t *block) { |
154 | // assuming all RFU bits are set to 0 | |
155 | if (block[10] == 0 && block[11] == 0 && block[12] == 0 && block[13] == 0) | |
156 | if((block[14] & 0x7f) <= 9 && block[15] <= 9) | |
157 | return true; | |
d10e08ae | 158 | |
818e15b0 | 159 | return false; |
d10e08ae | 160 | } |
161 | ||
162 | void ReadPCF7931() { | |
818e15b0 | 163 | int found_blocks = 0; // successfully read blocks |
caaa4293 | 164 | int max_blocks = 8; // readable blocks |
818e15b0 | 165 | uint8_t memory_blocks[8][17]; // PCF content |
caaa4293 | 166 | |
818e15b0 S |
167 | uint8_t single_blocks[8][17]; // PFC blocks with unknown position |
168 | int single_blocks_cnt = 0; | |
d10e08ae | 169 | |
caaa4293 | 170 | size_t n = 0; // transmitted blocks |
818e15b0 | 171 | uint8_t tmp_blocks[4][16]; // temporary read buffer |
caaa4293 | 172 | |
818e15b0 S |
173 | uint8_t found_0_1 = 0; // flag: blocks 0 and 1 were found |
174 | int errors = 0; // error counter | |
175 | int tries = 0; // tries counter | |
caaa4293 | 176 | |
818e15b0 S |
177 | memset(memory_blocks, 0, 8*17*sizeof(uint8_t)); |
178 | memset(single_blocks, 0, 8*17*sizeof(uint8_t)); | |
caaa4293 | 179 | |
818e15b0 | 180 | int i = 0, j = 0; |
d10e08ae | 181 | |
182 | do { | |
818e15b0 | 183 | i = 0; |
caaa4293 | 184 | |
818e15b0 S |
185 | memset(tmp_blocks, 0, 4*16*sizeof(uint8_t)); |
186 | n = DemodPCF7931((uint8_t**)tmp_blocks); | |
d10e08ae | 187 | if(!n) |
818e15b0 | 188 | ++errors; |
caaa4293 | 189 | |
190 | // exit if no block is received | |
818e15b0 | 191 | if (errors >= 10 && found_blocks == 0 && single_blocks_cnt == 0) { |
d10e08ae | 192 | Dbprintf("Error, no tag or bad tag"); |
193 | return; | |
194 | } | |
caaa4293 | 195 | // exit if too many errors during reading |
818e15b0 | 196 | if (tries > 50 && (2*errors > tries)) { |
d10e08ae | 197 | Dbprintf("Error reading the tag"); |
198 | Dbprintf("Here is the partial content"); | |
199 | goto end; | |
200 | } | |
caaa4293 | 201 | |
818e15b0 S |
202 | // our logic breaks if we don't get at least two blocks |
203 | if (n < 2) { | |
204 | if (n == 0 || !memcmp(tmp_blocks[0], "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 16)) | |
205 | continue; | |
206 | ||
207 | if (single_blocks_cnt < max_blocks) { | |
208 | for (i = 0; i < single_blocks_cnt; ++i) { | |
209 | if (!memcmp(single_blocks[i], tmp_blocks[0], 16)) { | |
210 | j = 1; | |
d10e08ae | 211 | break; |
212 | } | |
213 | } | |
818e15b0 S |
214 | if (j != 1) { |
215 | memcpy(single_blocks[single_blocks_cnt], tmp_blocks[0], 16); | |
216 | single_blocks_cnt++; | |
217 | } | |
218 | j = 0; | |
d10e08ae | 219 | } |
818e15b0 S |
220 | ++tries; |
221 | continue; | |
caaa4293 | 222 | } |
223 | ||
224 | Dbprintf("(dbg) got %d blocks (%d/%d found) (%d tries, %d errors)", n, found_blocks, (max_blocks == 0 ? found_blocks : max_blocks), tries, errors); | |
818e15b0 S |
225 | |
226 | i = 0; | |
caaa4293 | 227 | if(!found_0_1) { |
818e15b0 S |
228 | while (i < n - 1) { |
229 | if (IsBlock0PCF7931(tmp_blocks[i]) && IsBlock1PCF7931(tmp_blocks[i+1])) { | |
230 | found_0_1 = 1; | |
231 | memcpy(memory_blocks[0], tmp_blocks[i], 16); | |
232 | memcpy(memory_blocks[1], tmp_blocks[i+1], 16); | |
233 | memory_blocks[0][ALLOC] = memory_blocks[1][ALLOC] = 1; | |
234 | // block 1 tells how many blocks are going to be sent | |
235 | max_blocks = MAX((memory_blocks[1][14] & 0x7f), memory_blocks[1][15]) + 1; | |
236 | found_blocks = 2; | |
caaa4293 | 237 | |
818e15b0 | 238 | Dbprintf("Found blocks 0 and 1. PCF is transmitting %d blocks.", max_blocks); |
caaa4293 | 239 | |
818e15b0 S |
240 | // handle the following blocks |
241 | for (j = i + 2; j < n; ++j) { | |
242 | memcpy(memory_blocks[found_blocks], tmp_blocks[j], 16); | |
243 | memory_blocks[found_blocks][ALLOC] = 1; | |
244 | ++found_blocks; | |
245 | } | |
246 | break; | |
247 | } | |
248 | ++i; | |
249 | } | |
250 | } else { | |
251 | // Trying to re-order blocks | |
252 | // Look for identical block in memory blocks | |
253 | while (i < n-1) { | |
254 | // skip all zeroes blocks | |
255 | if (memcmp(tmp_blocks[i], "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 16)) { | |
256 | for (j = 1; j < max_blocks - 1; ++j) { | |
257 | if (!memcmp(tmp_blocks[i], memory_blocks[j], 16) && !memory_blocks[j+1][ALLOC]) { | |
258 | memcpy(memory_blocks[j+1], tmp_blocks[i+1], 16); | |
259 | memory_blocks[j+1][ALLOC] = 1; | |
260 | if (++found_blocks >= max_blocks) goto end; | |
261 | } | |
262 | } | |
263 | } | |
264 | if (memcmp(tmp_blocks[i+1], "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 16)) { | |
265 | for (j = 0; j < max_blocks; ++j) { | |
266 | if (!memcmp(tmp_blocks[i+1], memory_blocks[j], 16) && !memory_blocks[(j == 0 ? max_blocks : j) -1][ALLOC]) { | |
267 | if (j == 0) { | |
268 | memcpy(memory_blocks[max_blocks - 1], tmp_blocks[i], 16); | |
269 | memory_blocks[max_blocks - 1][ALLOC] = 1; | |
270 | } else { | |
271 | memcpy(memory_blocks[j-1], tmp_blocks[i], 16); | |
272 | memory_blocks[j-1][ALLOC] = 1; | |
d10e08ae | 273 | } |
818e15b0 | 274 | if (++found_blocks >= max_blocks) goto end; |
d10e08ae | 275 | } |
276 | } | |
277 | } | |
818e15b0 | 278 | ++i; |
d10e08ae | 279 | } |
280 | } | |
818e15b0 S |
281 | ++tries; |
282 | if (BUTTON_PRESS()) { | |
283 | Dbprintf("Button pressed, stopping."); | |
284 | goto end; | |
285 | } | |
286 | } | |
287 | while (found_blocks != max_blocks); | |
288 | ||
d10e08ae | 289 | end: |
290 | Dbprintf("-----------------------------------------"); | |
291 | Dbprintf("Memory content:"); | |
292 | Dbprintf("-----------------------------------------"); | |
818e15b0 S |
293 | for (i = 0; i < max_blocks; ++i) { |
294 | if (memory_blocks[i][ALLOC]) | |
295 | print_result("Block", memory_blocks[i], 16); | |
d10e08ae | 296 | else |
297 | Dbprintf("<missing block %d>", i); | |
298 | } | |
299 | Dbprintf("-----------------------------------------"); | |
caaa4293 | 300 | |
818e15b0 S |
301 | if (found_blocks < max_blocks) { |
302 | Dbprintf("-----------------------------------------"); | |
303 | Dbprintf("Blocks with unknown position:"); | |
304 | Dbprintf("-----------------------------------------"); | |
305 | for (i = 0; i < single_blocks_cnt; ++i) | |
306 | print_result("Block", single_blocks[i], 16); | |
caaa4293 | 307 | |
818e15b0 S |
308 | Dbprintf("-----------------------------------------"); |
309 | } | |
7cfc777b | 310 | cmd_send(CMD_ACK,0,0,0,0,0); |
d10e08ae | 311 | } |
312 | ||
818e15b0 | 313 | static void RealWritePCF7931(uint8_t *pass, uint16_t init_delay, int32_t l, int32_t p, uint8_t address, uint8_t byte, uint8_t data) { |
d10e08ae | 314 | uint32_t tab[1024]={0}; // data times frame |
315 | uint32_t u = 0; | |
316 | uint8_t parity = 0; | |
317 | bool comp = 0; | |
318 | ||
319 | //BUILD OF THE DATA FRAME | |
d10e08ae | 320 | //alimentation of the tag (time for initializing) |
321 | AddPatternPCF7931(init_delay, 0, 8192/2*T0_PCF, tab); | |
d10e08ae | 322 | AddPatternPCF7931(8192/2*T0_PCF + 319*T0_PCF+70, 3*T0_PCF, 29*T0_PCF, tab); |
d10e08ae | 323 | //password indication bit |
324 | AddBitPCF7931(1, tab, l, p); | |
818e15b0 S |
325 | // password (on 56 bits) |
326 | AddBytePCF7931(pass[0], tab, l, p); | |
327 | AddBytePCF7931(pass[1], tab, l, p); | |
328 | AddBytePCF7931(pass[2], tab, l, p); | |
329 | AddBytePCF7931(pass[3], tab, l, p); | |
330 | AddBytePCF7931(pass[4], tab, l, p); | |
331 | AddBytePCF7931(pass[5], tab, l, p); | |
332 | AddBytePCF7931(pass[6], tab, l, p); | |
d10e08ae | 333 | //programming mode (0 or 1) |
334 | AddBitPCF7931(0, tab, l, p); | |
caaa4293 | 335 | |
d10e08ae | 336 | //block adress on 6 bits |
818e15b0 | 337 | for (u = 0; u < 6; ++u) { |
caaa4293 | 338 | if (address & (1 << u)) { // bit 1 |
818e15b0 | 339 | ++parity; |
d10e08ae | 340 | AddBitPCF7931(1, tab, l, p); |
caaa4293 | 341 | } else { // bit 0 |
d10e08ae | 342 | AddBitPCF7931(0, tab, l, p); |
343 | } | |
344 | } | |
caaa4293 | 345 | |
d10e08ae | 346 | //byte address on 4 bits |
818e15b0 | 347 | for (u = 0; u < 4; ++u) |
d10e08ae | 348 | { |
caaa4293 | 349 | if (byte & (1 << u)) { // bit 1 |
d10e08ae | 350 | parity++; |
351 | AddBitPCF7931(1, tab, l, p); | |
d10e08ae | 352 | } |
caaa4293 | 353 | else // bit 0 |
818e15b0 | 354 | AddBitPCF7931(0, tab, l, p); |
d10e08ae | 355 | } |
caaa4293 | 356 | |
d10e08ae | 357 | //data on 8 bits |
d10e08ae | 358 | for (u=0; u<8; u++) |
359 | { | |
caaa4293 | 360 | if (data&(1<<u)) { // bit 1 |
d10e08ae | 361 | parity++; |
362 | AddBitPCF7931(1, tab, l, p); | |
caaa4293 | 363 | } |
364 | else //bit 0 | |
d10e08ae | 365 | AddBitPCF7931(0, tab, l, p); |
d10e08ae | 366 | } |
367 | ||
d10e08ae | 368 | //parity bit |
818e15b0 | 369 | if ((parity % 2) == 0) |
caaa4293 | 370 | AddBitPCF7931(0, tab, l, p); //even parity |
818e15b0 | 371 | else |
d10e08ae | 372 | AddBitPCF7931(1, tab, l, p);//odd parity |
d10e08ae | 373 | |
374 | //time access memory | |
375 | AddPatternPCF7931(5120+2680, 0, 0, tab); | |
376 | ||
377 | //conversion of the scale time | |
818e15b0 S |
378 | for (u = 0; u < 500; ++u) |
379 | tab[u] = (tab[u] * 3) / 2; | |
d10e08ae | 380 | |
381 | //compennsation of the counter reload | |
818e15b0 | 382 | while (!comp) { |
d10e08ae | 383 | comp = 1; |
818e15b0 S |
384 | for (u = 0; tab[u] != 0; ++u) |
385 | if(tab[u] > 0xFFFF) { | |
d10e08ae | 386 | tab[u] -= 0xFFFF; |
387 | comp = 0; | |
388 | } | |
d10e08ae | 389 | } |
390 | ||
391 | SendCmdPCF7931(tab); | |
392 | } | |
393 | ||
818e15b0 S |
394 | void BruteForcePCF7931(uint64_t password, uint8_t tries, uint16_t init_delay, int32_t l, int32_t p) { |
395 | uint8_t i = 0; | |
396 | uint8_t pass_array[7]; | |
caaa4293 | 397 | |
818e15b0 S |
398 | while (password < 0x00FFFFFFFFFFFFFF) { |
399 | if (BUTTON_PRESS()) { | |
400 | Dbprintf("Button pressed, stopping bruteforce ..."); | |
401 | return; | |
402 | } | |
caaa4293 | 403 | |
404 | num_to_bytes(password, 7, pass_array); | |
818e15b0 S |
405 | |
406 | Dbprintf("Trying: %02x %02x %02x %02x %02x %02x %02x ...", | |
407 | pass_array[0], | |
408 | pass_array[1], | |
409 | pass_array[2], | |
410 | pass_array[3], | |
411 | pass_array[4], | |
412 | pass_array[5], | |
413 | pass_array[6]); | |
caaa4293 | 414 | |
818e15b0 S |
415 | for (i = 0; i < tries; ++i) |
416 | RealWritePCF7931 | |
417 | ( | |
418 | pass_array, | |
419 | init_delay, | |
420 | l, | |
421 | p, | |
422 | 0, | |
423 | 7, | |
424 | 0x01 | |
425 | ); | |
caaa4293 | 426 | |
427 | ++password; | |
818e15b0 S |
428 | } |
429 | } | |
430 | ||
431 | /* Write on a byte of a PCF7931 tag | |
432 | * @param address : address of the block to write | |
433 | @param byte : address of the byte to write | |
caaa4293 | 434 | @param data : data to write |
818e15b0 S |
435 | */ |
436 | void WritePCF7931(uint8_t pass1, uint8_t pass2, uint8_t pass3, uint8_t pass4, uint8_t pass5, uint8_t pass6, uint8_t pass7, uint16_t init_delay, int32_t l, int32_t p, uint8_t address, uint8_t byte, uint8_t data) { | |
437 | Dbprintf("Initialization delay : %d us", init_delay); | |
438 | Dbprintf("Offsets : %d us on the low pulses width, %d us on the low pulses positions", l, p); | |
439 | Dbprintf("Password (LSB first on each byte): %02x %02x %02x %02x %02x %02x %02x", pass1, pass2, pass3, pass4, pass5, pass6, pass7); | |
440 | Dbprintf("Block address : %02x", address); | |
441 | Dbprintf("Byte address : %02x", byte); | |
442 | Dbprintf("Data : %02x", data); | |
caaa4293 | 443 | |
818e15b0 | 444 | uint8_t password[7] = {pass1, pass2, pass3, pass4, pass5, pass6, pass7}; |
caaa4293 | 445 | |
818e15b0 S |
446 | RealWritePCF7931 (password, init_delay, l, p, address, byte, data); |
447 | } | |
448 | ||
d10e08ae | 449 | |
450 | ||
451 | /* Send a trame to a PCF7931 tags | |
452 | * @param tab : array of the data frame | |
453 | */ | |
454 | ||
818e15b0 | 455 | void SendCmdPCF7931(uint32_t * tab) { |
d10e08ae | 456 | uint16_t u=0; |
457 | uint16_t tempo=0; | |
458 | ||
818e15b0 | 459 | Dbprintf("Sending data frame ..."); |
d10e08ae | 460 | |
461 | FpgaDownloadAndGo(FPGA_BITSTREAM_LF); | |
d10e08ae | 462 | FpgaSendCommand(FPGA_CMD_SET_DIVISOR, 95); //125Khz |
d10e08ae | 463 | FpgaWriteConfWord(FPGA_MAJOR_MODE_LF_PASSTHRU ); |
464 | ||
465 | LED_A_ON(); | |
466 | ||
467 | // steal this pin from the SSP and use it to control the modulation | |
468 | AT91C_BASE_PIOA->PIO_PER = GPIO_SSC_DOUT; | |
469 | AT91C_BASE_PIOA->PIO_OER = GPIO_SSC_DOUT; | |
470 | ||
471 | //initialization of the timer | |
472 | AT91C_BASE_PMC->PMC_PCER |= (0x1 << 12) | (0x1 << 13) | (0x1 << 14); | |
473 | AT91C_BASE_TCB->TCB_BMR = AT91C_TCB_TC0XC0S_NONE | AT91C_TCB_TC1XC1S_TIOA0 | AT91C_TCB_TC2XC2S_NONE; | |
474 | AT91C_BASE_TC0->TC_CCR = AT91C_TC_CLKDIS; // timer disable | |
475 | AT91C_BASE_TC0->TC_CMR = AT91C_TC_CLKS_TIMER_DIV3_CLOCK; //clock at 48/32 MHz | |
476 | AT91C_BASE_TC0->TC_CCR = AT91C_TC_CLKEN; | |
477 | AT91C_BASE_TCB->TCB_BCR = 1; | |
478 | ||
d10e08ae | 479 | tempo = AT91C_BASE_TC0->TC_CV; |
818e15b0 | 480 | for (u = 0; tab[u] != 0; u += 3) { |
d10e08ae | 481 | // modulate antenna |
482 | HIGH(GPIO_SSC_DOUT); | |
818e15b0 | 483 | while(tempo != tab[u]) |
d10e08ae | 484 | tempo = AT91C_BASE_TC0->TC_CV; |
caaa4293 | 485 | |
d10e08ae | 486 | // stop modulating antenna |
487 | LOW(GPIO_SSC_DOUT); | |
818e15b0 | 488 | while(tempo != tab[u+1]) |
d10e08ae | 489 | tempo = AT91C_BASE_TC0->TC_CV; |
d10e08ae | 490 | |
491 | // modulate antenna | |
492 | HIGH(GPIO_SSC_DOUT); | |
818e15b0 | 493 | while(tempo != tab[u+2]) |
d10e08ae | 494 | tempo = AT91C_BASE_TC0->TC_CV; |
d10e08ae | 495 | } |
496 | ||
497 | LED_A_OFF(); | |
498 | FpgaWriteConfWord(FPGA_MAJOR_MODE_OFF); | |
499 | SpinDelay(200); | |
500 | ||
d10e08ae | 501 | AT91C_BASE_TC0->TC_CCR = AT91C_TC_CLKDIS; // timer disable |
818e15b0 | 502 | DbpString("Data frame sent (multiple sends may be needed)"); |
d10e08ae | 503 | LED(0xFFFF, 1000); |
504 | } | |
505 | ||
506 | ||
caaa4293 | 507 | /* Add a byte for building the data frame of PCF7931 tags |
d10e08ae | 508 | * @param b : byte to add |
509 | * @param tab : array of the data frame | |
510 | * @param l : offset on low pulse width | |
511 | * @param p : offset on low pulse positioning | |
512 | */ | |
818e15b0 | 513 | bool AddBytePCF7931(uint8_t byte, uint32_t * tab, int32_t l, int32_t p) { |
d10e08ae | 514 | uint32_t u; |
818e15b0 | 515 | for (u = 0; u < 8; ++u) { |
caaa4293 | 516 | if (byte & (1 << u)) { //bit is 1 |
d10e08ae | 517 | if(AddBitPCF7931(1, tab, l, p)==1)return 1; |
818e15b0 | 518 | } else { //bit is 0 |
d10e08ae | 519 | if(AddBitPCF7931(0, tab, l, p)==1)return 1; |
520 | } | |
521 | } | |
522 | ||
523 | return 0; | |
524 | } | |
525 | ||
caaa4293 | 526 | /* Add a bits for building the data frame of PCF7931 tags |
d10e08ae | 527 | * @param b : bit to add |
528 | * @param tab : array of the data frame | |
529 | * @param l : offset on low pulse width | |
530 | * @param p : offset on low pulse positioning | |
531 | */ | |
818e15b0 | 532 | bool AddBitPCF7931(bool b, uint32_t * tab, int32_t l, int32_t p) { |
d10e08ae | 533 | uint8_t u = 0; |
534 | ||
818e15b0 | 535 | for (u = 0; tab[u] != 0; u += 3){} //we put the cursor at the last value of the array |
d10e08ae | 536 | |
caaa4293 | 537 | if (b == 1) { //add a bit 1 |
538 | if (u == 0) tab[u] = 34 * T0_PCF + p; | |
539 | else tab[u] = 34 * T0_PCF + tab[u-1] + p; | |
d10e08ae | 540 | |
818e15b0 S |
541 | tab[u+1] = 6 * T0_PCF+tab[u] + l; |
542 | tab[u+2] = 88 * T0_PCF+tab[u + 1] - l - p; | |
d10e08ae | 543 | return 0; |
caaa4293 | 544 | } else { //add a bit 0 |
d10e08ae | 545 | |
caaa4293 | 546 | if (u == 0) tab[u] = 98 * T0_PCF + p; |
547 | else tab[u] = 98 * T0_PCF + tab[u-1] + p; | |
d10e08ae | 548 | |
818e15b0 S |
549 | tab[u + 1] = 6 * T0_PCF + tab[u] + l; |
550 | tab[u + 2] = 24 * T0_PCF + tab[u + 1] - l - p; | |
d10e08ae | 551 | return 0; |
552 | } | |
caaa4293 | 553 | |
d10e08ae | 554 | return 1; |
555 | } | |
556 | ||
557 | /* Add a custom pattern in the data frame | |
558 | * @param a : delay of the first high pulse | |
559 | * @param b : delay of the low pulse | |
560 | * @param c : delay of the last high pulse | |
561 | * @param tab : array of the data frame | |
562 | */ | |
818e15b0 | 563 | bool AddPatternPCF7931(uint32_t a, uint32_t b, uint32_t c, uint32_t * tab) { |
d10e08ae | 564 | uint32_t u = 0; |
818e15b0 | 565 | for(u = 0; tab[u] != 0; u += 3){} //we put the cursor at the last value of the array |
d10e08ae | 566 | |
caaa4293 | 567 | if (u == 0) tab[u] = a; |
568 | else tab[u] = a + tab[u - 1]; | |
d10e08ae | 569 | |
818e15b0 S |
570 | tab[u + 1] = b + tab[u]; |
571 | tab[u + 2] = c + tab[u + 1]; | |
d10e08ae | 572 | |
573 | return 0; | |
574 | } |