]>
Commit | Line | Data |
---|---|---|
1338d245 | 1 | //----------------------------------------------------------------------------- |
2 | // ISO/IEC 7816-6 manufacturer byte decoding | |
3 | //----------------------------------------------------------------------------- | |
4 | ||
5 | #ifndef MANUFACTURERS_H__ | |
6 | #define MANUFACTURERS_H__ | |
7 | ||
8 | #include <stdint.h> | |
9 | ||
10 | extern char *getManufacturerName(uint8_t vendorID); | |
11 | extern char *getChipInfo(uint8_t vendorID, uint8_t chipID); | |
12 | ||
13 | #endif |