From 994b119c326783d2d71f774c1b6f3bfc8495d6dc Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Fri, 8 Oct 2010 15:37:21 +0000 Subject: [PATCH] nfc-emulate-forum-tag4 (renamed from nfc-emulate-ndef): add a man page. --- examples/Makefile.am | 9 ++--- examples/nfc-emulate-forum-tag4.1 | 34 +++++++++++++++++++ ...mulate-ndef.c => nfc-emulate-forum-tag4.c} | 2 +- 3 files changed, 40 insertions(+), 5 deletions(-) create mode 100644 examples/nfc-emulate-forum-tag4.1 rename examples/{nfc-emulate-ndef.c => nfc-emulate-forum-tag4.c} (99%) diff --git a/examples/Makefile.am b/examples/Makefile.am index 5a4be7a..c35ba48 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1,6 +1,6 @@ bin_PROGRAMS = \ nfc-anticol \ - nfc-emulate-ndef \ + nfc-emulate-forum-tag4 \ nfc-emulate-tag \ nfc-emulate-uid \ nfc-list \ @@ -46,9 +46,9 @@ nfc_relay_SOURCES = nfc-relay.c nfc_relay_LDADD = $(top_builddir)/libnfc/libnfc.la \ libnfcutils.la -nfc_emulate_ndef_SOURCES = nfc-emulate-ndef.c -nfc_emulate_ndef_LDADD = $(top_builddir)/libnfc/libnfc.la \ - libnfcutils.la +nfc_emulate_forum_tag4_SOURCES = nfc-emulate-forum-tag4.c +nfc_emulate_forum_tag4_LDADD = $(top_builddir)/libnfc/libnfc.la \ + libnfcutils.la nfc_emulate_tag_SOURCES = nfc-emulate-tag.c nfc_emulate_tag_LDADD = $(top_builddir)/libnfc/libnfc.la \ @@ -79,6 +79,7 @@ pn53x_tamashell_LDFLAGS = @READLINE_LIBS@ dist_man_MANS = \ nfc-anticol.1 \ + nfc-emulate-forum-tag4.1 \ nfc-emulate-tag.1 \ nfc-emulate-uid.1 \ nfc-list.1 \ diff --git a/examples/nfc-emulate-forum-tag4.1 b/examples/nfc-emulate-forum-tag4.1 new file mode 100644 index 0000000..922b684 --- /dev/null +++ b/examples/nfc-emulate-forum-tag4.1 @@ -0,0 +1,34 @@ +.TH NFC-EMULATE-FORUM-TAG4 1 "October 8, 2010" +.SH NAME +nfc-emulate-forum-tag4 \- NFC Forum tag type 4 emulation command line demonstration tool +.SH SYNOPSIS +.B nfc-emulate-forum-tag4 +.SH DESCRIPTION +.B nfc-emulate-forum-tag4 +is an demonstration tool that emulate a NFC Forum tag type 4 with NDEF content. + +Currently, this tool only works with a Nokia 6212 Classic phone as initiator +and a PN532 equipped NFC device as target. + +This example use the hardware capability of PN532 to handle ISO/IEC 14443-4 +low-level frames like RATS/ATS, WTX, etc. + +At the moment, only the Nokia 6212 Classic can be used with this example +because its based on a pre-established communication plan: example send the +expected replies to the initiator without interprete queries. + +.SH BUGS +Please report any bugs on the +.B libnfc +forum at +.BR http://www.libnfc.org/community/ "." +.SH LICENCE +.B libnfc +and +.B libnfc-examples +are covered by the GNU Lesser General Public License (LGPL), version 3. +.SH AUTHORS +Roel Verduly +.PP +This manual page was written by Romuald Conty . +It is licensed under the terms of the GNU GPL (version 2 or later). diff --git a/examples/nfc-emulate-ndef.c b/examples/nfc-emulate-forum-tag4.c similarity index 99% rename from examples/nfc-emulate-ndef.c rename to examples/nfc-emulate-forum-tag4.c index 961938e..f0b303d 100644 --- a/examples/nfc-emulate-ndef.c +++ b/examples/nfc-emulate-forum-tag4.c @@ -18,7 +18,7 @@ */ /** - * @file nfc-emulate-ndef.c + * @file nfc-emulate-forum-tag4.c * @brief Emulate a NFC Forum Tag Type 4 with a NDEF message */