]>
Commit | Line | Data |
---|---|---|
21452811 | 1 | --[[ |
2 | These are command definitions. This file should correspond exactly to usb_cmd.h. | |
3 | --]] | |
4 | --// For the bootloader | |
5 | local _commands = { | |
6 | CMD_DEVICE_INFO = 0x0000, | |
7 | CMD_SETUP_WRITE = 0x0001, | |
8 | CMD_FINISH_WRITE = 0x0003, | |
9 | CMD_HARDWARE_RESET = 0x0004, | |
10 | CMD_START_FLASH = 0x0005, | |
11 | CMD_NACK = 0x00fe, | |
12 | CMD_ACK = 0x00ff, | |
13 | ||
14 | --// For general mucking around | |
15 | CMD_DEBUG_PRINT_STRING = 0x0100, | |
16 | CMD_DEBUG_PRINT_INTEGERS = 0x0101, | |
17 | CMD_DEBUG_PRINT_BYTES = 0x0102, | |
18 | CMD_LCD_RESET = 0x0103, | |
19 | CMD_LCD = 0x0104, | |
20 | CMD_BUFF_CLEAR = 0x0105, | |
21 | CMD_READ_MEM = 0x0106, | |
22 | CMD_VERSION = 0x0107, | |
7838f4be | 23 | CMD_STATUS = 0x0108, |
24 | CMD_PING = 0x0109, | |
aaa1a9a2 | 25 | CMD_DOWNLOAD_EML_BIGBUF = 0x0110, |
26 | CMD_DOWNLOADED_EML_BIGBUF = 0x0111, | |
27 | ||
21452811 | 28 | --// For low-frequency tags |
29 | CMD_READ_TI_TYPE = 0x0202, | |
30 | CMD_WRITE_TI_TYPE = 0x0203, | |
31 | CMD_DOWNLOADED_RAW_BITS_TI_TYPE = 0x0204, | |
32 | CMD_ACQUIRE_RAW_ADC_SAMPLES_125K = 0x0205, | |
33 | CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K = 0x0206, | |
34 | CMD_DOWNLOAD_RAW_ADC_SAMPLES_125K = 0x0207, | |
35 | CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K = 0x0208, | |
36 | CMD_DOWNLOADED_SIM_SAMPLES_125K = 0x0209, | |
37 | CMD_SIMULATE_TAG_125K = 0x020A, | |
38 | CMD_HID_DEMOD_FSK = 0x020B, | |
39 | CMD_HID_SIM_TAG = 0x020C, | |
40 | CMD_SET_LF_DIVISOR = 0x020D, | |
41 | CMD_LF_SIMULATE_BIDIR = 0x020E, | |
42 | CMD_SET_ADC_MUX = 0x020F, | |
43 | CMD_HID_CLONE_TAG = 0x0210, | |
44 | CMD_EM410X_WRITE_TAG = 0x0211, | |
45 | CMD_INDALA_CLONE_TAG = 0x0212, | |
46 | --// for 224 bits UID | |
47 | CMD_INDALA_CLONE_TAG_L = 0x0213, | |
48 | CMD_T55XX_READ_BLOCK = 0x0214, | |
49 | CMD_T55XX_WRITE_BLOCK = 0x0215, | |
94422fa2 | 50 | CMD_T55XX_RESET_READ = 0x0216, |
21452811 | 51 | CMD_PCF7931_READ = 0x0217, |
f3cfe428 | 52 | CMD_PCF7931_WRITE = 0x0223, |
21452811 | 53 | CMD_EM4X_READ_WORD = 0x0218, |
54 | CMD_EM4X_WRITE_WORD = 0x0219, | |
b1329a02 | 55 | CMD_IO_DEMOD_FSK = 0x021A, |
abd6112f | 56 | CMD_IO_CLONE_TAG = 0x021B, |
57 | CMD_EM410X_DEMOD = 0x021c, | |
58 | CMD_SET_LF_SAMPLING_CONFIG = 0x021d, | |
59 | CMD_FSK_SIM_TAG = 0x021E, | |
60 | CMD_ASK_SIM_TAG = 0x021F, | |
872e3d4d | 61 | CMD_PSK_SIM_TAG = 0x0220, |
db25599d | 62 | CMD_AWID_DEMOD_FSK = 0x0221, |
0de8e387 | 63 | CMD_VIKING_CLONE_TAG = 0x0222, |
9276e859 | 64 | CMD_T55XX_WAKEUP = 0x0224, |
0de8e387 | 65 | |
21452811 | 66 | --/* CMD_SET_ADC_MUX: ext1 is 0 for lopkd, 1 for loraw, 2 for hipkd, 3 for hiraw */ |
67 | ||
68 | --// For the 13.56 MHz tags | |
69 | CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 = 0x0300, | |
21452811 | 70 | CMD_READ_SRI512_TAG = 0x0303, |
71 | CMD_READ_SRIX4K_TAG = 0x0304, | |
14e18625 | 72 | CMD_ISO_14443B_COMMAND = 0x0305, |
21452811 | 73 | CMD_READER_ISO_15693 = 0x0310, |
74 | CMD_SIMTAG_ISO_15693 = 0x0311, | |
75 | CMD_RECORD_RAW_ADC_SAMPLES_ISO_15693 = 0x0312, | |
76 | CMD_ISO_15693_COMMAND = 0x0313, | |
77 | CMD_ISO_15693_COMMAND_DONE = 0x0314, | |
78 | CMD_ISO_15693_FIND_AFI = 0x0315, | |
79 | CMD_ISO_15693_DEBUG = 0x0316, | |
b1329a02 | 80 | CMD_LF_SNOOP_RAW_ADC_SAMPLES = 0x0317, |
21452811 | 81 | |
82 | --// For Hitag2 transponders | |
83 | CMD_SNOOP_HITAG = 0x0370, | |
84 | CMD_SIMULATE_HITAG = 0x0371, | |
85 | CMD_READER_HITAG = 0x0372, | |
86 | ||
0db11b71 | 87 | --// For HitagS |
88 | CMD_TEST_HITAGS_TRACES = 0x0367, | |
89 | CMD_SIMULATE_HITAG_S = 0x0368, | |
90 | CMD_READ_HITAG_S = 0x0373, | |
91 | CMD_WR_HITAG_S = 0x0375, | |
92 | CMD_EMU_HITAG_S = 0x0376, | |
93 | ||
22e24700 | 94 | CMD_SIMULATE_TAG_ISO_14443B = 0x0381, |
95 | CMD_SNOOP_ISO_14443B = 0x0382, | |
21452811 | 96 | CMD_SNOOP_ISO_14443a = 0x0383, |
97 | CMD_SIMULATE_TAG_ISO_14443a = 0x0384, | |
98 | CMD_READER_ISO_14443a = 0x0385, | |
99 | CMD_SIMULATE_TAG_LEGIC_RF = 0x0387, | |
100 | CMD_READER_LEGIC_RF = 0x0388, | |
101 | CMD_WRITER_LEGIC_RF = 0x0389, | |
102 | CMD_EPA_PACE_COLLECT_NONCE = 0x038A, | |
d0f3338e | 103 | CMD_EPA_PACE_REPLAY = 0x038B, |
21452811 | 104 | |
e98572a1 | 105 | CMD_ICLASS_READCHECK = 0x038F, |
106 | CMD_ICLASS_CLONE = 0x0390, | |
107 | CMD_ICLASS_DUMP = 0x0391, | |
21452811 | 108 | CMD_SNOOP_ICLASS = 0x0392, |
109 | CMD_SIMULATE_TAG_ICLASS = 0x0393, | |
110 | CMD_READER_ICLASS = 0x0394, | |
b1329a02 | 111 | CMD_READER_ICLASS_REPLAY = 0x0395, |
e98572a1 | 112 | CMD_ICLASS_READBLOCK = 0x0396, |
113 | CMD_ICLASS_WRITEBLOCK = 0x0397, | |
114 | CMD_ICLASS_EML_MEMSET = 0x0398, | |
115 | CMD_ICLASS_AUTHENTICATION = 0x0399, | |
21452811 | 116 | |
117 | --// For measurements of the antenna tuning | |
118 | CMD_MEASURE_ANTENNA_TUNING = 0x0400, | |
119 | CMD_MEASURE_ANTENNA_TUNING_HF = 0x0401, | |
120 | CMD_MEASURED_ANTENNA_TUNING = 0x0410, | |
121 | CMD_LISTEN_READER_FIELD = 0x0420, | |
122 | ||
123 | --// For direct FPGA control | |
124 | CMD_FPGA_MAJOR_MODE_OFF = 0x0500, | |
125 | ||
126 | --// For mifare commands | |
127 | CMD_MIFARE_SET_DBGMODE = 0x0600, | |
128 | CMD_MIFARE_EML_MEMCLR = 0x0601, | |
129 | CMD_MIFARE_EML_MEMSET = 0x0602, | |
130 | CMD_MIFARE_EML_MEMGET = 0x0603, | |
131 | CMD_MIFARE_EML_CARDLOAD = 0x0604, | |
b1329a02 | 132 | |
133 | --// magic chinese card commands | |
134 | CMD_MIFARE_CSETBLOCK = 0x0605, | |
135 | CMD_MIFARE_CGETBLOCK = 0x0606, | |
136 | CMD_MIFARE_CIDENT = 0x0607, | |
21452811 | 137 | |
138 | CMD_SIMULATE_MIFARE_CARD = 0x0610, | |
139 | ||
140 | CMD_READER_MIFARE = 0x0611, | |
141 | CMD_MIFARE_NESTED = 0x0612, | |
c188b1b9 | 142 | CMD_MIFARE_ACQUIRE_ENCRYPTED_NONCES = 0x0613, |
21452811 | 143 | |
144 | CMD_MIFARE_READBL = 0x0620, | |
b1329a02 | 145 | CMD_MIFAREU_READBL = 0x0720, |
146 | ||
21452811 | 147 | CMD_MIFARE_READSC = 0x0621, |
b1329a02 | 148 | CMD_MIFAREU_READCARD = 0x0721, |
149 | ||
21452811 | 150 | CMD_MIFARE_WRITEBL = 0x0622, |
b1329a02 | 151 | CMD_MIFAREU_WRITEBL = 0x0722, |
152 | CMD_MIFAREU_WRITEBL_COMPAT = 0x0723, | |
153 | ||
21452811 | 154 | CMD_MIFARE_CHKKEYS = 0x0623, |
155 | ||
156 | CMD_MIFARE_SNIFFER = 0x0630, | |
157 | ||
b1329a02 | 158 | --//ultralightC |
e7e95088 | 159 | CMD_MIFAREUC_AUTH = 0x0724, |
aa60d156 | 160 | CMD_MIFAREUC_SETPWD = 0x0727, |
161 | CMD_MIFAREU_SETUID = 0x0728, | |
b1329a02 | 162 | |
163 | --// mifare desfire | |
164 | CMD_MIFARE_DESFIRE_READBL = 0x0728, | |
165 | CMD_MIFARE_DESFIRE_WRITEBL = 0x0729, | |
166 | CMD_MIFARE_DESFIRE_AUTH1 = 0x072a, | |
167 | CMD_MIFARE_DESFIRE_AUTH2 = 0x072b, | |
168 | CMD_MIFARE_DES_READER = 0x072c, | |
169 | CMD_MIFARE_DESFIRE_INFO = 0x072d, | |
170 | CMD_MIFARE_DESFIRE = 0x072e, | |
1d0ccbe0 | 171 | CMD_HF_SNIFFER = 0x0800, |
172 | ||
21452811 | 173 | CMD_UNKNOWN = 0xFFFF, |
174 | } | |
175 | ||
176 | ||
177 | local _reverse_lookup,k,v = {} | |
f62b5e12 | 178 | for k, v in pairs(_commands) do |
179 | _reverse_lookup[v] = k | |
180 | end | |
181 | _commands.tostring = function(command) | |
21452811 | 182 | if(type(command) == 'number') then |
183 | return ("%s (%d)"):format(_reverse_lookup[command]or "ERROR UNDEFINED!", command) | |
184 | end | |
185 | return ("Error, numeric argument expected, got : %s"):format(tostring(command)) | |
186 | end | |
187 | ||
188 | Command = { | |
189 | ||
190 | new = function(self, o) | |
191 | ||
192 | local o = o or {} -- create object if user does not provide one | |
193 | setmetatable(o, self) -- DIY inheritance a'la javascript | |
194 | self.__index = self | |
195 | ||
196 | o.cmd = o.cmd or _commands.CMD_UNKNOWN | |
21452811 | 197 | o.arg1 = o.arg1 or 0 |
198 | o.arg2 = o.arg2 or 0 | |
199 | o.arg3 = o.arg3 or 0 | |
200 | local data = o.data or "0" | |
201 | ||
202 | if(type(data) == 'string') then | |
203 | -- We need to check if it is correct length, otherwise pad it | |
204 | local len = string.len(data) | |
205 | if(len < 1024) then | |
206 | --Should be 1024 hex characters to represent 512 bytes of data | |
207 | data = data .. string.rep("0",1024 - len ) | |
208 | end | |
209 | if(len > 1024) then | |
210 | -- OOps, a bit too much data here | |
211 | print( ( "WARNING: data size too large, was %s chars, will be truncated "):format(len) ) | |
212 | -- | |
213 | data = data:sub(1,1024) | |
214 | end | |
215 | else | |
216 | print(("WARNING; data was NOT a (hex-) string, but was %s"):format(type(data))) | |
217 | end | |
f62b5e12 | 218 | o.data = data |
21452811 | 219 | return o |
220 | end, | |
f62b5e12 | 221 | parse = function(packet) |
0de8e387 | 222 | local count, cmd, arg1, arg2, arg3, data = bin.unpack('LLLLH511', packet) |
4df3eb3f | 223 | return Command:new{cmd = cmd, arg1 = arg1, arg2 = arg2, arg3 = arg3, data = data} |
f62b5e12 | 224 | end |
225 | ||
21452811 | 226 | } |
227 | function Command:__tostring() | |
228 | local output = ("%s\r\nargs : (%s, %s, %s)\r\ndata:\r\n%s\r\n"):format( | |
229 | _commands.tostring(self.cmd), | |
230 | tostring(self.arg1), | |
231 | tostring(self.arg2), | |
232 | tostring(self.arg3), | |
233 | tostring(self.data)) | |
234 | return output | |
235 | end | |
236 | function Command:getBytes() | |
237 | --If a hex-string has been used | |
238 | local data = self.data | |
239 | local cmd = self.cmd | |
240 | local arg1, arg2, arg3 = self.arg1, self.arg2, self.arg3 | |
1c6490cd | 241 | return bin.pack("LLLLH",cmd, arg1, arg2, arg3, data); |
21452811 | 242 | end |
abd6112f | 243 | return _commands |