nfc-emulate-forum-tag4 (renamed from nfc-emulate-ndef): add a man page.
This commit is contained in:
parent
fd211d53f8
commit
994b119c32
3 changed files with 40 additions and 5 deletions
|
@ -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 \
|
||||
|
|
34
examples/nfc-emulate-forum-tag4.1
Normal file
34
examples/nfc-emulate-forum-tag4.1
Normal file
|
@ -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 <roel@libnfc.org>
|
||||
.PP
|
||||
This manual page was written by Romuald Conty <romuald@libnfc.org>.
|
||||
It is licensed under the terms of the GNU GPL (version 2 or later).
|
|
@ -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
|
||||
*/
|
||||
|
Loading…
Reference in a new issue