d9de20fa |
1 | //----------------------------------------------------------------------------- |
2 | // Piwi - October 2018 |
3 | // |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
5 | // at your option, any later version. See the LICENSE.txt file for the text of |
6 | // the license. |
7 | //----------------------------------------------------------------------------- |
8 | // Routines to support ISO 15693. |
9 | //----------------------------------------------------------------------------- |
10 | |
11 | #ifndef __ISO15693_H |
12 | #define __ISO15693_H |
13 | |
14 | #include <stdint.h> |
15 | |
16 | void SnoopIso15693(void); |
17 | void AcquireRawAdcSamplesIso15693(void); |
18 | void ReaderIso15693(uint32_t parameter); |
19 | void SimTagIso15693(uint32_t parameter, uint8_t *uid); |
20 | void BruteforceIso15693Afi(uint32_t speed); |
21 | void DirectTag15693Command(uint32_t datalen,uint32_t speed, uint32_t recv, uint8_t data[]); |
096dee17 |
22 | void SetTag15693Uid(uint8_t *uid); |
d9de20fa |
23 | void SetDebugIso15693(uint32_t flag); |
24 | |
25 | #endif |