fix typos

This commit is contained in:
Philippe Teuwen 2012-05-14 19:44:03 +00:00
parent e9b2f5729c
commit 7597055f26
6 changed files with 8 additions and 8 deletions

View file

@ -9,7 +9,7 @@ is a demonstration tool that emulates a NFC Forum tag type 2 that contains a rea
.SH NOTES
It have been developed using PN533 USB hardware as target and Google Nexus S phone as initiator.
This is know to NOT work with Nokia 6212 Classic and could not work with several NFC Forum compiliant devices due to these reasons:
This is know to NOT work with Nokia 6212 Classic and could not work with several NFC Forum compliant devices due to these reasons:
- The emulated target only have a 4 bytes UID where 7 bytes UID (as a real Mifare Ultralight tag) are usually attempted;
- The chip is emulating a ISO/IEC 14443-3 tag, without any hardware helper.

View file

@ -8,11 +8,11 @@
.Op infile Op outfile
.Sh DESCRIPTION
.Nm
is a demonstration tool that emulates a NFC Forum tag type 4 with NDEF content.
is a demonstration tool that emulates a NFC Forum tag type 4 v1.0 with NDEF content.
.Pp
.Ar infile
is the file which contains NDEF message you want to share with the NFC-Forum
compiliant initiator device (e.g. Nokia 6212 Classic)
compliant initiator device (e.g. Nokia 6212 Classic)
.Pp
If you want to save a shared content by the initiator device, we have to give
.Ar outfile
@ -21,7 +21,7 @@ argument to point where the NDEF message will be saved.
This example uses the hardware capability of PN532 to handle ISO/IEC 14443-4
low-level frames like RATS/ATS, WTX, etc.
.Pp
All devices compiliant with NFC-Forum Tag Type 4 (Version 1.0) can be used with
All devices compliant with NFC-Forum Tag Type 4 (Version 1.0) can be used with
this example in read-write mode.
.Pp
If no argument is given, a default NDEF file is available.

View file

@ -30,7 +30,7 @@
/**
* @file nfc-emulate-forum-tag4.c
* @brief Emulates a NFC Forum Tag Type 4 with a NDEF message
* @brief Emulates a NFC Forum Tag Type 4 v1.0 with a NDEF message
*/
/*

View file

@ -240,7 +240,7 @@ main(int argc, char *argv[])
}
// Check again if System Code equals 0x12fc
if (0 != memcmp (nt.nti.nfi.abtSysCode, abtNfcForumSysCode, 2)) {
fprintf (stderr, "Tag is not NFC Forum Tag Type 3 compiliant.\n");
fprintf (stderr, "Tag is not NFC Forum Tag Type 3 compliant.\n");
error = EXIT_FAILURE;
goto error;
}