├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Doxyfile.in ├── HACKING.md ├── Makefile.am ├── NEWS.md ├── README-Windows.md ├── README.md ├── cmake ├── FixBundle.cmake.in ├── LibNFCConfig.cmake.in ├── LibNFCConfigVersion.cmake.in ├── Makefile.am ├── UseLibNFC.cmake ├── config_posix.h.cmake ├── config_windows.h.cmake └── modules │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindLIBUSB.cmake │ ├── FindPCSC.cmake │ ├── LibnfcDrivers.cmake │ ├── Makefile.am │ └── UseDoxygen.cmake ├── configure.ac ├── contrib ├── Makefile.am ├── devd │ ├── Makefile.am │ └── pn53x.conf ├── libnfc │ ├── Makefile.am │ ├── arygon.conf.sample │ ├── pn532_i2c_on_rpi.conf.sample │ ├── pn532_spi_on_rpi.conf.sample │ ├── pn532_uart_on_rpi.conf.sample │ ├── pn532_uart_on_rpi_3.conf.sample │ ├── pn532_uart_on_rpi_5.conf.sample │ └── pn532_via_uart2usb.conf.sample ├── linux │ ├── Makefile.am │ └── blacklist-libnfc.conf ├── udev │ ├── 93-pn53x.rules │ └── Makefile.am ├── win32 │ ├── Makefile.am │ ├── dirent.h │ ├── err.h │ ├── getopt.c │ ├── getopt.h │ ├── libnfc │ │ ├── Makefile.am │ │ ├── buses │ │ │ ├── Makefile.am │ │ │ └── uart.c │ │ └── log-internal.c │ ├── nfc.def │ ├── nfc_msvc.def │ ├── stdlib.c │ ├── sys │ │ ├── Makefile.am │ │ └── select.h │ ├── unistd.h │ └── version.rc.in └── windows.h ├── examples ├── CMakeLists.txt ├── Makefile.am ├── doc │ ├── quick_start_example1.c │ └── quick_start_example2.c ├── nfc-anticol.1 ├── nfc-anticol.c ├── nfc-dep-initiator.1 ├── nfc-dep-initiator.c ├── nfc-dep-target.1 ├── nfc-dep-target.c ├── nfc-emulate-forum-tag2.1 ├── nfc-emulate-forum-tag2.c ├── nfc-emulate-tag.1 ├── nfc-emulate-tag.c ├── nfc-emulate-uid.1 ├── nfc-emulate-uid.c ├── nfc-mfsetuid.1 ├── nfc-mfsetuid.c ├── nfc-poll.1 ├── nfc-poll.c ├── nfc-relay.1 ├── nfc-relay.c ├── nfc-st25tb.c ├── pn53x-diagnose.1 ├── pn53x-diagnose.c ├── pn53x-sam.1 ├── pn53x-sam.c ├── pn53x-tamashell-scripts │ ├── ASK_LoGO_LEDs.cmd │ ├── Makefile.am │ ├── ReadMobib.sh │ ├── ReadNavigo.sh │ ├── UltraLightRead.cmd │ └── UltraLightReadWrite.cmd ├── pn53x-tamashell.1 └── pn53x-tamashell.c ├── include ├── CMakeLists.txt ├── Makefile.am └── nfc │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── nfc-emulation.h │ ├── nfc-types.h │ └── nfc.h ├── libnfc.conf.sample ├── libnfc.pc.in ├── libnfc ├── CMakeLists.txt ├── Makefile.am ├── additional-pages.dox ├── buses │ ├── Makefile.am │ ├── empty.c │ ├── i2c.c │ ├── i2c.h │ ├── spi.c │ ├── spi.h │ ├── uart.c │ ├── uart.h │ ├── usbbus.c │ └── usbbus.h ├── chips │ ├── Makefile.am │ ├── pn53x-internal.h │ ├── pn53x.c │ └── pn53x.h ├── conf.c ├── conf.h ├── drivers.h ├── drivers │ ├── Makefile.am │ ├── acr122_pcsc.c │ ├── acr122_pcsc.h │ ├── acr122_usb.c │ ├── acr122_usb.h │ ├── acr122s.c │ ├── acr122s.h │ ├── arygon.c │ ├── arygon.h │ ├── pcsc.c │ ├── pcsc.h │ ├── pn532_i2c.c │ ├── pn532_i2c.h │ ├── pn532_spi.c │ ├── pn532_spi.h │ ├── pn532_uart.c │ ├── pn532_uart.h │ ├── pn53x_usb.c │ ├── pn53x_usb.h │ ├── pn71xx.c │ └── pn71xx.h ├── iso14443-subr.c ├── iso7816.h ├── log-internal.c ├── log-internal.h ├── log.c ├── log.h ├── mirror-subr.c ├── mirror-subr.h ├── nfc-device.c ├── nfc-emulation.c ├── nfc-internal.c ├── nfc-internal.h ├── nfc.c ├── target-subr.c └── target-subr.h ├── m4 ├── libnfc_check_libusb.m4 ├── libnfc_check_pcsc.m4 ├── libnfc_drivers.m4 └── readline.m4 ├── make_release.sh ├── manual-test-results.txt ├── mingw-cross-compile.sh ├── test ├── Makefile.am ├── run-test.sh ├── test_access_storm.c ├── test_dep_active.c ├── test_dep_passive.c ├── test_device_modes_as_dep.c ├── test_register_access.c └── test_register_endianness.c └── utils ├── CMakeLists.txt ├── Makefile.am ├── jewel.c ├── jewel.h ├── mifare.c ├── mifare.h ├── nfc-barcode.1 ├── nfc-barcode.c ├── nfc-emulate-forum-tag4.1 ├── nfc-emulate-forum-tag4.c ├── nfc-jewel.1 ├── nfc-jewel.c ├── nfc-list.1 ├── nfc-list.c ├── nfc-mfclassic.1 ├── nfc-mfclassic.c ├── nfc-mfultralight.1 ├── nfc-mfultralight.c ├── nfc-read-forum-tag3.1 ├── nfc-read-forum-tag3.c ├── nfc-relay-picc.1 ├── nfc-relay-picc.c ├── nfc-scan-device.1 ├── nfc-scan-device.c ├── nfc-utils.c └── nfc-utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/HACKING.md -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/NEWS.md -------------------------------------------------------------------------------- /README-Windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/README-Windows.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FixBundle.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/FixBundle.cmake.in -------------------------------------------------------------------------------- /cmake/LibNFCConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/LibNFCConfig.cmake.in -------------------------------------------------------------------------------- /cmake/LibNFCConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/LibNFCConfigVersion.cmake.in -------------------------------------------------------------------------------- /cmake/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/Makefile.am -------------------------------------------------------------------------------- /cmake/UseLibNFC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/UseLibNFC.cmake -------------------------------------------------------------------------------- /cmake/config_posix.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/config_posix.h.cmake -------------------------------------------------------------------------------- /cmake/config_windows.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/config_windows.h.cmake -------------------------------------------------------------------------------- /cmake/modules/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/modules/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/modules/FindLIBUSB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/modules/FindLIBUSB.cmake -------------------------------------------------------------------------------- /cmake/modules/FindPCSC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/modules/FindPCSC.cmake -------------------------------------------------------------------------------- /cmake/modules/LibnfcDrivers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/modules/LibnfcDrivers.cmake -------------------------------------------------------------------------------- /cmake/modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/modules/Makefile.am -------------------------------------------------------------------------------- /cmake/modules/UseDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/cmake/modules/UseDoxygen.cmake -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/devd/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | pn53x.conf 3 | -------------------------------------------------------------------------------- /contrib/devd/pn53x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/devd/pn53x.conf -------------------------------------------------------------------------------- /contrib/libnfc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/Makefile.am -------------------------------------------------------------------------------- /contrib/libnfc/arygon.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/arygon.conf.sample -------------------------------------------------------------------------------- /contrib/libnfc/pn532_i2c_on_rpi.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/pn532_i2c_on_rpi.conf.sample -------------------------------------------------------------------------------- /contrib/libnfc/pn532_spi_on_rpi.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/pn532_spi_on_rpi.conf.sample -------------------------------------------------------------------------------- /contrib/libnfc/pn532_uart_on_rpi.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/pn532_uart_on_rpi.conf.sample -------------------------------------------------------------------------------- /contrib/libnfc/pn532_uart_on_rpi_3.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/pn532_uart_on_rpi_3.conf.sample -------------------------------------------------------------------------------- /contrib/libnfc/pn532_uart_on_rpi_5.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/pn532_uart_on_rpi_5.conf.sample -------------------------------------------------------------------------------- /contrib/libnfc/pn532_via_uart2usb.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/libnfc/pn532_via_uart2usb.conf.sample -------------------------------------------------------------------------------- /contrib/linux/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | blacklist-libnfc.conf 3 | -------------------------------------------------------------------------------- /contrib/linux/blacklist-libnfc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/linux/blacklist-libnfc.conf -------------------------------------------------------------------------------- /contrib/udev/93-pn53x.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/udev/93-pn53x.rules -------------------------------------------------------------------------------- /contrib/udev/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | 93-pn53x.rules 3 | -------------------------------------------------------------------------------- /contrib/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/Makefile.am -------------------------------------------------------------------------------- /contrib/win32/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/dirent.h -------------------------------------------------------------------------------- /contrib/win32/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/err.h -------------------------------------------------------------------------------- /contrib/win32/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/getopt.c -------------------------------------------------------------------------------- /contrib/win32/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/getopt.h -------------------------------------------------------------------------------- /contrib/win32/libnfc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = buses . 2 | 3 | EXTRA_DIST = \ 4 | log-internal.c 5 | -------------------------------------------------------------------------------- /contrib/win32/libnfc/buses/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | uart.c 3 | -------------------------------------------------------------------------------- /contrib/win32/libnfc/buses/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/libnfc/buses/uart.c -------------------------------------------------------------------------------- /contrib/win32/libnfc/log-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/libnfc/log-internal.c -------------------------------------------------------------------------------- /contrib/win32/nfc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/nfc.def -------------------------------------------------------------------------------- /contrib/win32/nfc_msvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/nfc_msvc.def -------------------------------------------------------------------------------- /contrib/win32/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/stdlib.c -------------------------------------------------------------------------------- /contrib/win32/sys/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | select.h 3 | -------------------------------------------------------------------------------- /contrib/win32/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/sys/select.h -------------------------------------------------------------------------------- /contrib/win32/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/unistd.h -------------------------------------------------------------------------------- /contrib/win32/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/win32/version.rc.in -------------------------------------------------------------------------------- /contrib/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/contrib/windows.h -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/doc/quick_start_example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/doc/quick_start_example1.c -------------------------------------------------------------------------------- /examples/doc/quick_start_example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/doc/quick_start_example2.c -------------------------------------------------------------------------------- /examples/nfc-anticol.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-anticol.1 -------------------------------------------------------------------------------- /examples/nfc-anticol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-anticol.c -------------------------------------------------------------------------------- /examples/nfc-dep-initiator.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-dep-initiator.1 -------------------------------------------------------------------------------- /examples/nfc-dep-initiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-dep-initiator.c -------------------------------------------------------------------------------- /examples/nfc-dep-target.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-dep-target.1 -------------------------------------------------------------------------------- /examples/nfc-dep-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-dep-target.c -------------------------------------------------------------------------------- /examples/nfc-emulate-forum-tag2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-emulate-forum-tag2.1 -------------------------------------------------------------------------------- /examples/nfc-emulate-forum-tag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-emulate-forum-tag2.c -------------------------------------------------------------------------------- /examples/nfc-emulate-tag.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-emulate-tag.1 -------------------------------------------------------------------------------- /examples/nfc-emulate-tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-emulate-tag.c -------------------------------------------------------------------------------- /examples/nfc-emulate-uid.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-emulate-uid.1 -------------------------------------------------------------------------------- /examples/nfc-emulate-uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-emulate-uid.c -------------------------------------------------------------------------------- /examples/nfc-mfsetuid.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-mfsetuid.1 -------------------------------------------------------------------------------- /examples/nfc-mfsetuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-mfsetuid.c -------------------------------------------------------------------------------- /examples/nfc-poll.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-poll.1 -------------------------------------------------------------------------------- /examples/nfc-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-poll.c -------------------------------------------------------------------------------- /examples/nfc-relay.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-relay.1 -------------------------------------------------------------------------------- /examples/nfc-relay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-relay.c -------------------------------------------------------------------------------- /examples/nfc-st25tb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/nfc-st25tb.c -------------------------------------------------------------------------------- /examples/pn53x-diagnose.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-diagnose.1 -------------------------------------------------------------------------------- /examples/pn53x-diagnose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-diagnose.c -------------------------------------------------------------------------------- /examples/pn53x-sam.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-sam.1 -------------------------------------------------------------------------------- /examples/pn53x-sam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-sam.c -------------------------------------------------------------------------------- /examples/pn53x-tamashell-scripts/ASK_LoGO_LEDs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell-scripts/ASK_LoGO_LEDs.cmd -------------------------------------------------------------------------------- /examples/pn53x-tamashell-scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell-scripts/Makefile.am -------------------------------------------------------------------------------- /examples/pn53x-tamashell-scripts/ReadMobib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell-scripts/ReadMobib.sh -------------------------------------------------------------------------------- /examples/pn53x-tamashell-scripts/ReadNavigo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell-scripts/ReadNavigo.sh -------------------------------------------------------------------------------- /examples/pn53x-tamashell-scripts/UltraLightRead.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell-scripts/UltraLightRead.cmd -------------------------------------------------------------------------------- /examples/pn53x-tamashell-scripts/UltraLightReadWrite.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell-scripts/UltraLightReadWrite.cmd -------------------------------------------------------------------------------- /examples/pn53x-tamashell.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell.1 -------------------------------------------------------------------------------- /examples/pn53x-tamashell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/examples/pn53x-tamashell.c -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(nfc) 2 | 3 | -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = nfc 2 | 3 | EXTRA_DIST = CMakeLists.txt 4 | -------------------------------------------------------------------------------- /include/nfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/include/nfc/CMakeLists.txt -------------------------------------------------------------------------------- /include/nfc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/include/nfc/Makefile.am -------------------------------------------------------------------------------- /include/nfc/nfc-emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/include/nfc/nfc-emulation.h -------------------------------------------------------------------------------- /include/nfc/nfc-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/include/nfc/nfc-types.h -------------------------------------------------------------------------------- /include/nfc/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/include/nfc/nfc.h -------------------------------------------------------------------------------- /libnfc.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc.conf.sample -------------------------------------------------------------------------------- /libnfc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc.pc.in -------------------------------------------------------------------------------- /libnfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/CMakeLists.txt -------------------------------------------------------------------------------- /libnfc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/Makefile.am -------------------------------------------------------------------------------- /libnfc/additional-pages.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/additional-pages.dox -------------------------------------------------------------------------------- /libnfc/buses/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/Makefile.am -------------------------------------------------------------------------------- /libnfc/buses/empty.c: -------------------------------------------------------------------------------- 1 | /* empty source code file */ 2 | #include 3 | -------------------------------------------------------------------------------- /libnfc/buses/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/i2c.c -------------------------------------------------------------------------------- /libnfc/buses/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/i2c.h -------------------------------------------------------------------------------- /libnfc/buses/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/spi.c -------------------------------------------------------------------------------- /libnfc/buses/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/spi.h -------------------------------------------------------------------------------- /libnfc/buses/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/uart.c -------------------------------------------------------------------------------- /libnfc/buses/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/uart.h -------------------------------------------------------------------------------- /libnfc/buses/usbbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/usbbus.c -------------------------------------------------------------------------------- /libnfc/buses/usbbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/buses/usbbus.h -------------------------------------------------------------------------------- /libnfc/chips/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/chips/Makefile.am -------------------------------------------------------------------------------- /libnfc/chips/pn53x-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/chips/pn53x-internal.h -------------------------------------------------------------------------------- /libnfc/chips/pn53x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/chips/pn53x.c -------------------------------------------------------------------------------- /libnfc/chips/pn53x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/chips/pn53x.h -------------------------------------------------------------------------------- /libnfc/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/conf.c -------------------------------------------------------------------------------- /libnfc/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/conf.h -------------------------------------------------------------------------------- /libnfc/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers.h -------------------------------------------------------------------------------- /libnfc/drivers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/Makefile.am -------------------------------------------------------------------------------- /libnfc/drivers/acr122_pcsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/acr122_pcsc.c -------------------------------------------------------------------------------- /libnfc/drivers/acr122_pcsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/acr122_pcsc.h -------------------------------------------------------------------------------- /libnfc/drivers/acr122_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/acr122_usb.c -------------------------------------------------------------------------------- /libnfc/drivers/acr122_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/acr122_usb.h -------------------------------------------------------------------------------- /libnfc/drivers/acr122s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/acr122s.c -------------------------------------------------------------------------------- /libnfc/drivers/acr122s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/acr122s.h -------------------------------------------------------------------------------- /libnfc/drivers/arygon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/arygon.c -------------------------------------------------------------------------------- /libnfc/drivers/arygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/arygon.h -------------------------------------------------------------------------------- /libnfc/drivers/pcsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pcsc.c -------------------------------------------------------------------------------- /libnfc/drivers/pcsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pcsc.h -------------------------------------------------------------------------------- /libnfc/drivers/pn532_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn532_i2c.c -------------------------------------------------------------------------------- /libnfc/drivers/pn532_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn532_i2c.h -------------------------------------------------------------------------------- /libnfc/drivers/pn532_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn532_spi.c -------------------------------------------------------------------------------- /libnfc/drivers/pn532_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn532_spi.h -------------------------------------------------------------------------------- /libnfc/drivers/pn532_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn532_uart.c -------------------------------------------------------------------------------- /libnfc/drivers/pn532_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn532_uart.h -------------------------------------------------------------------------------- /libnfc/drivers/pn53x_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn53x_usb.c -------------------------------------------------------------------------------- /libnfc/drivers/pn53x_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn53x_usb.h -------------------------------------------------------------------------------- /libnfc/drivers/pn71xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn71xx.c -------------------------------------------------------------------------------- /libnfc/drivers/pn71xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/drivers/pn71xx.h -------------------------------------------------------------------------------- /libnfc/iso14443-subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/iso14443-subr.c -------------------------------------------------------------------------------- /libnfc/iso7816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/iso7816.h -------------------------------------------------------------------------------- /libnfc/log-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/log-internal.c -------------------------------------------------------------------------------- /libnfc/log-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/log-internal.h -------------------------------------------------------------------------------- /libnfc/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/log.c -------------------------------------------------------------------------------- /libnfc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/log.h -------------------------------------------------------------------------------- /libnfc/mirror-subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/mirror-subr.c -------------------------------------------------------------------------------- /libnfc/mirror-subr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/mirror-subr.h -------------------------------------------------------------------------------- /libnfc/nfc-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/nfc-device.c -------------------------------------------------------------------------------- /libnfc/nfc-emulation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/nfc-emulation.c -------------------------------------------------------------------------------- /libnfc/nfc-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/nfc-internal.c -------------------------------------------------------------------------------- /libnfc/nfc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/nfc-internal.h -------------------------------------------------------------------------------- /libnfc/nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/nfc.c -------------------------------------------------------------------------------- /libnfc/target-subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/target-subr.c -------------------------------------------------------------------------------- /libnfc/target-subr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/libnfc/target-subr.h -------------------------------------------------------------------------------- /m4/libnfc_check_libusb.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/m4/libnfc_check_libusb.m4 -------------------------------------------------------------------------------- /m4/libnfc_check_pcsc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/m4/libnfc_check_pcsc.m4 -------------------------------------------------------------------------------- /m4/libnfc_drivers.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/m4/libnfc_drivers.m4 -------------------------------------------------------------------------------- /m4/readline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/m4/readline.m4 -------------------------------------------------------------------------------- /make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/make_release.sh -------------------------------------------------------------------------------- /manual-test-results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/manual-test-results.txt -------------------------------------------------------------------------------- /mingw-cross-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/mingw-cross-compile.sh -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/run-test.sh -------------------------------------------------------------------------------- /test/test_access_storm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/test_access_storm.c -------------------------------------------------------------------------------- /test/test_dep_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/test_dep_active.c -------------------------------------------------------------------------------- /test/test_dep_passive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/test_dep_passive.c -------------------------------------------------------------------------------- /test/test_device_modes_as_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/test_device_modes_as_dep.c -------------------------------------------------------------------------------- /test/test_register_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/test_register_access.c -------------------------------------------------------------------------------- /test/test_register_endianness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/test/test_register_endianness.c -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/Makefile.am -------------------------------------------------------------------------------- /utils/jewel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/jewel.c -------------------------------------------------------------------------------- /utils/jewel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/jewel.h -------------------------------------------------------------------------------- /utils/mifare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/mifare.c -------------------------------------------------------------------------------- /utils/mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/mifare.h -------------------------------------------------------------------------------- /utils/nfc-barcode.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-barcode.1 -------------------------------------------------------------------------------- /utils/nfc-barcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-barcode.c -------------------------------------------------------------------------------- /utils/nfc-emulate-forum-tag4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-emulate-forum-tag4.1 -------------------------------------------------------------------------------- /utils/nfc-emulate-forum-tag4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-emulate-forum-tag4.c -------------------------------------------------------------------------------- /utils/nfc-jewel.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-jewel.1 -------------------------------------------------------------------------------- /utils/nfc-jewel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-jewel.c -------------------------------------------------------------------------------- /utils/nfc-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-list.1 -------------------------------------------------------------------------------- /utils/nfc-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-list.c -------------------------------------------------------------------------------- /utils/nfc-mfclassic.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-mfclassic.1 -------------------------------------------------------------------------------- /utils/nfc-mfclassic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-mfclassic.c -------------------------------------------------------------------------------- /utils/nfc-mfultralight.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-mfultralight.1 -------------------------------------------------------------------------------- /utils/nfc-mfultralight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-mfultralight.c -------------------------------------------------------------------------------- /utils/nfc-read-forum-tag3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-read-forum-tag3.1 -------------------------------------------------------------------------------- /utils/nfc-read-forum-tag3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-read-forum-tag3.c -------------------------------------------------------------------------------- /utils/nfc-relay-picc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-relay-picc.1 -------------------------------------------------------------------------------- /utils/nfc-relay-picc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-relay-picc.c -------------------------------------------------------------------------------- /utils/nfc-scan-device.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-scan-device.1 -------------------------------------------------------------------------------- /utils/nfc-scan-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-scan-device.c -------------------------------------------------------------------------------- /utils/nfc-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-utils.c -------------------------------------------------------------------------------- /utils/nfc-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfc-tools/libnfc/HEAD/utils/nfc-utils.h --------------------------------------------------------------------------------