├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── NFCForum-SmartPoster_RTD_1.0.pdf ├── NFCForum-TS-NDEF_1.0.pdf ├── NFCForum-TS-RTD_1.0.pdf ├── NFCForum-TS-RTD_Text_1.0.pdf ├── NFCForum-TS-RTD_URI_1.0.pdf ├── NFCForum-TS-SNEP_1.0.pdf └── NFCForum-TS-Signature_RTD-1.0.pdf ├── main.c ├── ndef.c └── ndef.h /.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | ndef.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/README.md -------------------------------------------------------------------------------- /docs/NFCForum-SmartPoster_RTD_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-SmartPoster_RTD_1.0.pdf -------------------------------------------------------------------------------- /docs/NFCForum-TS-NDEF_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-TS-NDEF_1.0.pdf -------------------------------------------------------------------------------- /docs/NFCForum-TS-RTD_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-TS-RTD_1.0.pdf -------------------------------------------------------------------------------- /docs/NFCForum-TS-RTD_Text_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-TS-RTD_Text_1.0.pdf -------------------------------------------------------------------------------- /docs/NFCForum-TS-RTD_URI_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-TS-RTD_URI_1.0.pdf -------------------------------------------------------------------------------- /docs/NFCForum-TS-SNEP_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-TS-SNEP_1.0.pdf -------------------------------------------------------------------------------- /docs/NFCForum-TS-Signature_RTD-1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/docs/NFCForum-TS-Signature_RTD-1.0.pdf -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/main.c -------------------------------------------------------------------------------- /ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/ndef.c -------------------------------------------------------------------------------- /ndef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haldean/ndef/HEAD/ndef.h --------------------------------------------------------------------------------