]>
Commit | Line | Data |
---|---|---|
f5ed4d12 | 1 | //----------------------------------------------------------------------------- |
2 | // | |
3 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
4 | // at your option, any later version. See the LICENSE.txt file for the text of | |
5 | // the license. | |
6 | //----------------------------------------------------------------------------- | |
7 | // Low frequency AWID 26 commands | |
8 | //----------------------------------------------------------------------------- | |
9 | ||
10 | #ifndef CMDLFAWID26_H__ | |
11 | #define CMDLFAWID26_H__ | |
12 | ||
13 | int CmdLFAWID26(const char *Cmd); | |
14 | ||
15 | int CmdClone(const char *Cmd); | |
1b492a97 | 16 | bool awid26_hex_to_uid(unsigned char *response, char *awid26); |
3bc3598e | 17 | bool bcd_to_awid26_bin(unsigned char *awid26, unsigned char *bcd); |
f5ed4d12 | 18 | #endif |