|
Mbed OS Reference
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
23#ifndef ISO7816_DEFS_H_
24#define ISO7816_DEFS_H_
26#define ISO7816_INS_SELECT 0xA4
27#define ISO7816_INS_READ_BINARY 0xB0
28#define ISO7816_INS_UPDATE_BINARY 0xD6
29#define ISO7816_INS_ENVELOPE 0xC2
32#define ISO7816_SW_OK 0x9000
33#define ISO7816_SW_INVALID_CLASS 0x6E00
34#define ISO7816_SW_INVALID_INS 0x6D00
35#define ISO7816_SW_NOT_FOUND 0x6A82
36#define ISO7816_SW_WRONG_LENGTH 0x6700
38#define ISO7816_PUT_SW(buf, sw) do{ *(buf)=(sw>>8) & 0xFF; *(buf+1)=(sw>>0) & 0xFF; } while(0);