├── ContactCard ├── README.md ├── STM7816.c └── STM7816.h ├── ContactlessCard ├── ISO14443.c ├── ISO14443.h ├── ISO15693.c ├── ISO15693.h ├── MIFARE.c ├── MIFARE.h ├── README.md ├── THM3070.c └── THM3070.h └── README.md /ContactCard/README.md: -------------------------------------------------------------------------------- 1 | #ContactCard 2 | 使用STM32 UASRT接口实现7816接触卡操作,暂时只有T=0的一些常用操作 3 | -------------------------------------------------------------------------------- /ContactCard/STM7816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactCard/STM7816.c -------------------------------------------------------------------------------- /ContactCard/STM7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactCard/STM7816.h -------------------------------------------------------------------------------- /ContactlessCard/ISO14443.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/ISO14443.c -------------------------------------------------------------------------------- /ContactlessCard/ISO14443.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/ISO14443.h -------------------------------------------------------------------------------- /ContactlessCard/ISO15693.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/ISO15693.c -------------------------------------------------------------------------------- /ContactlessCard/ISO15693.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/ISO15693.h -------------------------------------------------------------------------------- /ContactlessCard/MIFARE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/MIFARE.c -------------------------------------------------------------------------------- /ContactlessCard/MIFARE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/MIFARE.h -------------------------------------------------------------------------------- /ContactlessCard/README.md: -------------------------------------------------------------------------------- 1 | #ContactlessCard 2 | 使用STM32和THM3070实现对非接触卡的操作,支持ISO14443(A/B)、MAFIRE、ISO15693协议类型 3 | -------------------------------------------------------------------------------- /ContactlessCard/THM3070.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/THM3070.c -------------------------------------------------------------------------------- /ContactlessCard/THM3070.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/ContactlessCard/THM3070.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zdphpn/STM32-smartcard/HEAD/README.md --------------------------------------------------------------------------------