2010-02-21 05:57:20 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Jonathan Westhues, Mar 2006
|
|
|
|
// Edits by Gerhard de Koning Gans, Sep 2007
|
2010-02-21 08:12:52 +08:00
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Definitions for all the types of commands that may be sent over USB; our
|
|
|
|
// own protocol.
|
2010-02-21 05:57:20 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __USB_CMD_H
|
|
|
|
#define __USB_CMD_H
|
2017-01-21 18:26:37 +08:00
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
#ifdef _MSC_VER
|
2016-05-07 05:51:03 +08:00
|
|
|
typedef DWORD uint32_t;
|
|
|
|
typedef BYTE uint8_t;
|
|
|
|
#define PACKED
|
|
|
|
// stuff
|
2010-02-21 05:57:20 +08:00
|
|
|
#else
|
2016-05-07 05:51:03 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define PACKED __attribute__((packed))
|
2010-02-21 05:57:20 +08:00
|
|
|
#endif
|
|
|
|
|
2012-12-05 07:39:18 +08:00
|
|
|
#define USB_CMD_DATA_SIZE 512
|
|
|
|
|
|
|
|
typedef struct {
|
2012-12-09 21:00:19 +08:00
|
|
|
uint64_t cmd;
|
2012-12-08 06:41:41 +08:00
|
|
|
uint64_t arg[3];
|
2012-12-05 07:39:18 +08:00
|
|
|
union {
|
2012-12-09 21:00:19 +08:00
|
|
|
uint8_t asBytes[USB_CMD_DATA_SIZE];
|
2012-12-05 07:39:18 +08:00
|
|
|
uint32_t asDwords[USB_CMD_DATA_SIZE/4];
|
|
|
|
} d;
|
2010-02-21 05:57:20 +08:00
|
|
|
} PACKED UsbCommand;
|
2015-01-31 06:03:44 +08:00
|
|
|
// A struct used to send sample-configs over USB
|
|
|
|
typedef struct{
|
|
|
|
uint8_t decimation;
|
|
|
|
uint8_t bits_per_sample;
|
|
|
|
bool averaging;
|
|
|
|
int divisor;
|
|
|
|
int trigger_threshold;
|
|
|
|
} sample_config;
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
// For the bootloader
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_DEVICE_INFO 0x0000
|
|
|
|
#define CMD_SETUP_WRITE 0x0001
|
|
|
|
#define CMD_FINISH_WRITE 0x0003
|
|
|
|
#define CMD_HARDWARE_RESET 0x0004
|
|
|
|
#define CMD_START_FLASH 0x0005
|
|
|
|
#define CMD_NACK 0x00fe
|
|
|
|
#define CMD_ACK 0x00ff
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
// For general mucking around
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_DEBUG_PRINT_STRING 0x0100
|
|
|
|
#define CMD_DEBUG_PRINT_INTEGERS 0x0101
|
|
|
|
#define CMD_DEBUG_PRINT_BYTES 0x0102
|
|
|
|
#define CMD_LCD_RESET 0x0103
|
|
|
|
#define CMD_LCD 0x0104
|
|
|
|
#define CMD_BUFF_CLEAR 0x0105
|
|
|
|
#define CMD_READ_MEM 0x0106
|
|
|
|
#define CMD_VERSION 0x0107
|
2015-07-23 05:00:52 +08:00
|
|
|
#define CMD_STATUS 0x0108
|
|
|
|
#define CMD_PING 0x0109
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2016-03-12 16:03:28 +08:00
|
|
|
#define CMD_DOWNLOAD_EML_BIGBUF 0x0110
|
|
|
|
#define CMD_DOWNLOADED_EML_BIGBUF 0x0111
|
|
|
|
|
2018-09-06 11:24:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-05-06 15:26:06 +08:00
|
|
|
// RDV40, Flash memory operations
|
2018-09-06 11:24:50 +08:00
|
|
|
#define CMD_FLASHMEM_READ 0x0120
|
|
|
|
#define CMD_FLASHMEM_WRITE 0x0121
|
|
|
|
#define CMD_FLASHMEM_WIPE 0x0122
|
|
|
|
#define CMD_FLASHMEM_DOWNLOAD 0x0123
|
|
|
|
#define CMD_FLASHMEM_DOWNLOADED 0x0124
|
|
|
|
#define CMD_FLASHMEM_INFO 0x0125
|
|
|
|
#define CMD_FLASHMEM_SET_SPIBAUDRATE 0x0126
|
2018-02-13 22:36:20 +08:00
|
|
|
|
2018-06-23 12:39:23 +08:00
|
|
|
// RDV40, Smart card operations
|
2018-07-05 22:32:10 +08:00
|
|
|
#define CMD_SMART_RAW 0x0140
|
2018-07-05 17:22:43 +08:00
|
|
|
#define CMD_SMART_UPGRADE 0x0141
|
2018-07-05 20:38:31 +08:00
|
|
|
#define CMD_SMART_UPLOAD 0x0142
|
2018-07-05 22:32:10 +08:00
|
|
|
#define CMD_SMART_ATR 0x0143
|
2018-07-06 06:24:04 +08:00
|
|
|
#define CMD_SMART_SETBAUD 0x0144
|
|
|
|
#define CMD_SMART_SETCLOCK 0x0145
|
2018-06-23 12:39:23 +08:00
|
|
|
|
2018-07-30 15:54:44 +08:00
|
|
|
// RDV40, FPC serial
|
|
|
|
#define CMD_FPC_SEND 0x0160
|
|
|
|
#define CMD_FPC_READ 0x0161
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// For low-frequency tags
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READ_TI_TYPE 0x0202
|
|
|
|
#define CMD_WRITE_TI_TYPE 0x0203
|
|
|
|
#define CMD_DOWNLOADED_RAW_BITS_TI_TYPE 0x0204
|
|
|
|
#define CMD_ACQUIRE_RAW_ADC_SAMPLES_125K 0x0205
|
|
|
|
#define CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K 0x0206
|
|
|
|
#define CMD_DOWNLOAD_RAW_ADC_SAMPLES_125K 0x0207
|
|
|
|
#define CMD_DOWNLOADED_RAW_ADC_SAMPLES_125K 0x0208
|
2017-09-14 17:13:10 +08:00
|
|
|
#define CMD_UPLOAD_SIM_SAMPLES_125K 0x0209
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_TAG_125K 0x020A
|
|
|
|
#define CMD_HID_DEMOD_FSK 0x020B
|
|
|
|
#define CMD_HID_SIM_TAG 0x020C
|
|
|
|
#define CMD_SET_LF_DIVISOR 0x020D
|
|
|
|
#define CMD_LF_SIMULATE_BIDIR 0x020E
|
|
|
|
#define CMD_SET_ADC_MUX 0x020F
|
|
|
|
#define CMD_HID_CLONE_TAG 0x0210
|
|
|
|
#define CMD_EM410X_WRITE_TAG 0x0211
|
|
|
|
#define CMD_INDALA_CLONE_TAG 0x0212
|
|
|
|
// for 224 bits UID
|
|
|
|
#define CMD_INDALA_CLONE_TAG_L 0x0213
|
2013-03-01 01:04:23 +08:00
|
|
|
#define CMD_T55XX_READ_BLOCK 0x0214
|
|
|
|
#define CMD_T55XX_WRITE_BLOCK 0x0215
|
2015-11-03 03:46:17 +08:00
|
|
|
#define CMD_T55XX_RESET_READ 0x0216
|
2013-03-01 01:04:23 +08:00
|
|
|
#define CMD_PCF7931_READ 0x0217
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_PCF7931_WRITE 0x0223
|
2013-03-01 01:04:23 +08:00
|
|
|
#define CMD_EM4X_READ_WORD 0x0218
|
|
|
|
#define CMD_EM4X_WRITE_WORD 0x0219
|
2014-03-19 04:52:48 +08:00
|
|
|
#define CMD_IO_DEMOD_FSK 0x021A
|
|
|
|
#define CMD_IO_CLONE_TAG 0x021B
|
2015-02-20 10:35:34 +08:00
|
|
|
#define CMD_EM410X_DEMOD 0x021c
|
2015-01-31 06:03:44 +08:00
|
|
|
// Sampling configuration for LF reader/snooper
|
|
|
|
#define CMD_SET_LF_SAMPLING_CONFIG 0x021d
|
2015-02-20 10:35:34 +08:00
|
|
|
#define CMD_FSK_SIM_TAG 0x021E
|
|
|
|
#define CMD_ASK_SIM_TAG 0x021F
|
2015-02-22 10:36:02 +08:00
|
|
|
#define CMD_PSK_SIM_TAG 0x0220
|
2015-07-19 02:43:14 +08:00
|
|
|
#define CMD_AWID_DEMOD_FSK 0x0221
|
2015-10-05 00:01:33 +08:00
|
|
|
#define CMD_VIKING_CLONE_TAG 0x0222
|
2015-10-21 01:00:02 +08:00
|
|
|
#define CMD_T55XX_WAKEUP 0x0224
|
2017-01-27 17:49:34 +08:00
|
|
|
#define CMD_COTAG 0x0225
|
2014-12-31 18:35:43 +08:00
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
/* CMD_SET_ADC_MUX: ext1 is 0 for lopkd, 1 for loraw, 2 for hipkd, 3 for hiraw */
|
|
|
|
|
|
|
|
// For the 13.56 MHz tags
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_15693 0x0300
|
2016-03-21 02:33:07 +08:00
|
|
|
#define CMD_READ_SRI_TAG 0x0303
|
2013-09-02 02:41:05 +08:00
|
|
|
#define CMD_ISO_14443B_COMMAND 0x0305
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READER_ISO_15693 0x0310
|
|
|
|
#define CMD_SIMTAG_ISO_15693 0x0311
|
|
|
|
#define CMD_RECORD_RAW_ADC_SAMPLES_ISO_15693 0x0312
|
|
|
|
#define CMD_ISO_15693_COMMAND 0x0313
|
|
|
|
#define CMD_ISO_15693_COMMAND_DONE 0x0314
|
|
|
|
#define CMD_ISO_15693_FIND_AFI 0x0315
|
2014-06-22 03:33:54 +08:00
|
|
|
#define CMD_LF_SNOOP_RAW_ADC_SAMPLES 0x0317
|
2012-09-18 21:53:17 +08:00
|
|
|
|
|
|
|
// For Hitag2 transponders
|
|
|
|
#define CMD_SNOOP_HITAG 0x0370
|
|
|
|
#define CMD_SIMULATE_HITAG 0x0371
|
|
|
|
#define CMD_READER_HITAG 0x0372
|
|
|
|
|
2016-03-05 02:06:47 +08:00
|
|
|
// For HitagS
|
|
|
|
#define CMD_TEST_HITAGS_TRACES 0x0367
|
|
|
|
#define CMD_SIMULATE_HITAG_S 0x0368
|
|
|
|
#define CMD_READ_HITAG_S 0x0373
|
|
|
|
#define CMD_WR_HITAG_S 0x0375
|
|
|
|
#define CMD_EMU_HITAG_S 0x0376
|
|
|
|
|
2018-02-28 20:21:47 +08:00
|
|
|
#define CMD_ANTIFUZZ_ISO_14443a 0x0380
|
2015-06-21 17:07:05 +08:00
|
|
|
#define CMD_SIMULATE_TAG_ISO_14443B 0x0381
|
|
|
|
#define CMD_SNOOP_ISO_14443B 0x0382
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SNOOP_ISO_14443a 0x0383
|
|
|
|
#define CMD_SIMULATE_TAG_ISO_14443a 0x0384
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READER_ISO_14443a 0x0385
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2016-07-29 03:16:02 +08:00
|
|
|
#define CMD_RAW_WRITER_LEGIC_RF 0x0386
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_TAG_LEGIC_RF 0x0387
|
|
|
|
#define CMD_READER_LEGIC_RF 0x0388
|
|
|
|
#define CMD_WRITER_LEGIC_RF 0x0389
|
2016-09-27 02:01:23 +08:00
|
|
|
|
2012-08-29 05:39:50 +08:00
|
|
|
#define CMD_EPA_PACE_COLLECT_NONCE 0x038A
|
2015-06-24 04:30:18 +08:00
|
|
|
#define CMD_EPA_PACE_REPLAY 0x038B
|
2012-08-24 07:32:18 +08:00
|
|
|
|
2016-09-27 02:01:23 +08:00
|
|
|
#define CMD_LEGIC_INFO 0x03BC
|
2016-10-07 01:13:23 +08:00
|
|
|
#define CMD_LEGIC_ESET 0x03BD
|
|
|
|
#define CMD_LEGIC_EGET 0x03BE
|
2016-09-27 02:01:23 +08:00
|
|
|
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_ICLASS_READCHECK 0x038F
|
|
|
|
#define CMD_ICLASS_CLONE 0x0390
|
|
|
|
#define CMD_ICLASS_DUMP 0x0391
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SNOOP_ICLASS 0x0392
|
|
|
|
#define CMD_SIMULATE_TAG_ICLASS 0x0393
|
|
|
|
#define CMD_READER_ICLASS 0x0394
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_READER_ICLASS_REPLAY 0x0395
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_ICLASS_READBLOCK 0x0396
|
|
|
|
#define CMD_ICLASS_WRITEBLOCK 0x0397
|
2015-02-15 04:15:53 +08:00
|
|
|
#define CMD_ICLASS_EML_MEMSET 0x0398
|
2015-10-08 05:00:46 +08:00
|
|
|
#define CMD_ICLASS_AUTHENTICATION 0x0399
|
2017-12-21 17:13:40 +08:00
|
|
|
#define CMD_ICLASS_CHECK_KEYS 0x039A
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2017-10-10 20:33:27 +08:00
|
|
|
// For ISO1092 / FeliCa
|
|
|
|
#define CMD_FELICA_SIMULATE_TAG 0x03A0
|
|
|
|
#define CMD_FELICA_SNOOP 0x03A1
|
|
|
|
#define CMD_FELICA_COMMAND 0x03A2
|
2017-10-21 02:27:44 +08:00
|
|
|
//temp
|
|
|
|
#define CMD_FELICA_LITE_DUMP 0x03AA
|
|
|
|
#define CMD_FELICA_LITE_SIM 0x03AB
|
2017-10-10 20:33:27 +08:00
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// For measurements of the antenna tuning
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MEASURE_ANTENNA_TUNING 0x0400
|
|
|
|
#define CMD_MEASURE_ANTENNA_TUNING_HF 0x0401
|
|
|
|
#define CMD_MEASURED_ANTENNA_TUNING 0x0410
|
|
|
|
#define CMD_LISTEN_READER_FIELD 0x0420
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
// For direct FPGA control
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_FPGA_MAJOR_MODE_OFF 0x0500
|
2011-06-10 21:35:10 +08:00
|
|
|
|
|
|
|
// For mifare commands
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_SET_DBGMODE 0x0600
|
|
|
|
#define CMD_MIFARE_EML_MEMCLR 0x0601
|
|
|
|
#define CMD_MIFARE_EML_MEMSET 0x0602
|
|
|
|
#define CMD_MIFARE_EML_MEMGET 0x0603
|
|
|
|
#define CMD_MIFARE_EML_CARDLOAD 0x0604
|
2014-12-27 04:32:58 +08:00
|
|
|
|
|
|
|
// magic chinese card commands
|
|
|
|
#define CMD_MIFARE_CSETBLOCK 0x0605
|
|
|
|
#define CMD_MIFARE_CGETBLOCK 0x0606
|
|
|
|
#define CMD_MIFARE_CIDENT 0x0607
|
2011-06-10 21:35:10 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_SIMULATE_MIFARE_CARD 0x0610
|
2011-06-10 21:35:10 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_READER_MIFARE 0x0611
|
|
|
|
#define CMD_MIFARE_NESTED 0x0612
|
2015-11-27 23:24:00 +08:00
|
|
|
#define CMD_MIFARE_ACQUIRE_ENCRYPTED_NONCES 0x0613
|
2017-08-26 18:57:18 +08:00
|
|
|
#define CMD_MIFARE_ACQUIRE_NONCES 0x0614
|
2011-06-10 21:35:10 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_READBL 0x0620
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_MIFAREU_READBL 0x0720
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_READSC 0x0621
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_MIFAREU_READCARD 0x0721
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_WRITEBL 0x0622
|
2015-01-02 07:09:59 +08:00
|
|
|
#define CMD_MIFAREU_WRITEBL 0x0722
|
|
|
|
#define CMD_MIFAREU_WRITEBL_COMPAT 0x0723
|
2014-09-18 18:38:31 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_CHKKEYS 0x0623
|
2017-03-09 21:36:19 +08:00
|
|
|
#define CMD_MIFARE_SETMOD 0x0624
|
2017-10-05 21:55:08 +08:00
|
|
|
#define CMD_MIFARE_CHKKEYS_FAST 0x0625
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_MIFARE_SNIFFER 0x0630
|
2014-09-12 05:23:46 +08:00
|
|
|
//ultralightC
|
2015-05-19 01:11:00 +08:00
|
|
|
#define CMD_MIFAREUC_AUTH 0x0724
|
2015-05-19 02:58:33 +08:00
|
|
|
//0x0725 and 0x0726 no longer used
|
2015-04-30 06:27:31 +08:00
|
|
|
#define CMD_MIFAREUC_SETPWD 0x0727
|
2015-05-19 02:58:33 +08:00
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
// mifare desfire
|
|
|
|
#define CMD_MIFARE_DESFIRE_READBL 0x0728
|
|
|
|
#define CMD_MIFARE_DESFIRE_WRITEBL 0x0729
|
|
|
|
#define CMD_MIFARE_DESFIRE_AUTH1 0x072a
|
|
|
|
#define CMD_MIFARE_DESFIRE_AUTH2 0x072b
|
|
|
|
#define CMD_MIFARE_DES_READER 0x072c
|
|
|
|
#define CMD_MIFARE_DESFIRE_INFO 0x072d
|
2014-09-18 18:38:31 +08:00
|
|
|
#define CMD_MIFARE_DESFIRE 0x072e
|
2012-07-07 00:19:05 +08:00
|
|
|
|
2015-04-25 00:41:49 +08:00
|
|
|
#define CMD_MIFARE_COLLECT_NONCES 0x072f
|
2017-12-05 02:36:26 +08:00
|
|
|
#define CMD_MIFARE_NACK_DETECT 0x0730
|
2015-04-25 00:41:49 +08:00
|
|
|
|
2015-10-28 04:47:21 +08:00
|
|
|
#define CMD_HF_SNIFFER 0x0800
|
|
|
|
|
2016-07-29 03:16:02 +08:00
|
|
|
// For EMV Commands
|
|
|
|
#define CMD_EMV_READ_RECORD 0x0700
|
|
|
|
#define CMD_EMV_TRANSACTION 0x0701
|
|
|
|
#define CMD_EMV_CLONE 0x0702
|
|
|
|
#define CMD_EMV_SIM 0x0703
|
|
|
|
#define CMD_EMV_TEST 0x0704
|
|
|
|
#define CMD_EMV_FUZZ_RATS 0x0705
|
|
|
|
#define CMD_EMV_GET_RANDOM_NUM 0x0706
|
|
|
|
#define CMD_EMV_LOAD_VALUE 0x0707
|
|
|
|
#define CMD_EMV_DUMP_CARD 0x0708
|
|
|
|
|
2012-08-24 07:32:18 +08:00
|
|
|
#define CMD_UNKNOWN 0xFFFF
|
2010-02-21 05:57:20 +08:00
|
|
|
|
2014-02-01 05:17:34 +08:00
|
|
|
//Mifare simulation flags
|
2016-04-14 17:09:17 +08:00
|
|
|
#define FLAG_INTERACTIVE 0x01
|
|
|
|
#define FLAG_4B_UID_IN_DATA 0x02
|
|
|
|
#define FLAG_7B_UID_IN_DATA 0x04
|
|
|
|
#define FLAG_10B_UID_IN_DATA 0x08
|
|
|
|
#define FLAG_UID_IN_EMUL 0x10
|
2016-04-18 19:02:36 +08:00
|
|
|
#define FLAG_NR_AR_ATTACK 0x20
|
2017-01-26 21:21:51 +08:00
|
|
|
//#define FLAG_RANDOM_NONCE 0x40
|
2014-02-01 05:17:34 +08:00
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
//Iclass reader flags
|
2017-12-21 19:42:32 +08:00
|
|
|
#define FLAG_ICLASS_READER_ONLY_ONCE 0x01
|
|
|
|
#define FLAG_ICLASS_READER_CC 0x02
|
|
|
|
#define FLAG_ICLASS_READER_CSN 0x04
|
|
|
|
#define FLAG_ICLASS_READER_CONF 0x08
|
|
|
|
#define FLAG_ICLASS_READER_AIA 0x10
|
2015-05-13 15:13:42 +08:00
|
|
|
#define FLAG_ICLASS_READER_ONE_TRY 0x20
|
2015-10-08 05:00:46 +08:00
|
|
|
#define FLAG_ICLASS_READER_CEDITKEY 0x40
|
2015-03-30 03:49:58 +08:00
|
|
|
|
2018-03-10 20:13:21 +08:00
|
|
|
// Dbprintf flags
|
|
|
|
#define FLAG_RAWPRINT 0x0111
|
|
|
|
#define FLAG_NOOPT 0x0000
|
|
|
|
#define FLAG_NOLOG 0x0001
|
|
|
|
#define FLAG_NONEWLINE 0x0010
|
|
|
|
#define FLAG_NOPROMPT 0x0100
|
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
// CMD_DEVICE_INFO response packet has flags in arg[0], flag definitions:
|
|
|
|
/* Whether a bootloader that understands the common_area is present */
|
|
|
|
#define DEVICE_INFO_FLAG_BOOTROM_PRESENT (1<<0)
|
|
|
|
|
|
|
|
/* Whether a osimage that understands the common_area is present */
|
|
|
|
#define DEVICE_INFO_FLAG_OSIMAGE_PRESENT (1<<1)
|
|
|
|
|
|
|
|
/* Set if the bootloader is currently executing */
|
|
|
|
#define DEVICE_INFO_FLAG_CURRENT_MODE_BOOTROM (1<<2)
|
|
|
|
|
|
|
|
/* Set if the OS is currently executing */
|
|
|
|
#define DEVICE_INFO_FLAG_CURRENT_MODE_OS (1<<3)
|
|
|
|
|
|
|
|
/* Set if this device understands the extend start flash command */
|
|
|
|
#define DEVICE_INFO_FLAG_UNDERSTANDS_START_FLASH (1<<4)
|
|
|
|
|
|
|
|
/* CMD_START_FLASH may have three arguments: start of area to flash,
|
|
|
|
end of area to flash, optional magic.
|
|
|
|
The bootrom will not allow to overwrite itself unless this magic
|
|
|
|
is given as third parameter */
|
|
|
|
|
|
|
|
#define START_FLASH_MAGIC 0x54494f44 // 'DOIT'
|
|
|
|
|
|
|
|
#endif
|