]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - include/smartcard.h
fix LED signalling in hf 15 snoop and hf 14a snoop (#797)
[proxmark3-svn] / include / smartcard.h
index 9bed8c9dbe4a4867683b13e1573085318156d854..161c6f6d6d47772d3fc88f9abf5711142daa8c5b 100644 (file)
 #ifndef __SMARTCARD_H
 #define __SMARTCARD_H
 
+#include <stdint.h>
+
 //-----------------------------------------------------------------------------
 // ISO 7618  Smart Card 
 //-----------------------------------------------------------------------------
 typedef struct {
        uint8_t atr_len;
-       uint8_t atr[30];
+       uint8_t atr[34];
 } __attribute__((__packed__)) smart_card_atr_t;
 
 typedef enum SMARTCARD_COMMAND {
        SC_CONNECT =       (1 << 0),
        SC_NO_DISCONNECT = (1 << 1),
        SC_RAW =           (1 << 2),
-       SC_NO_SELECT =     (1 << 3)
+       SC_SELECT =        (1 << 3),
+       SC_RAW_T0 =            (1 << 4)
 } smartcard_command_t;
 
 
Impressum, Datenschutz