fix typos
This commit is contained in:
parent
e9b2f5729c
commit
7597055f26
6 changed files with 8 additions and 8 deletions
|
@ -35,7 +35,7 @@
|
|||
* 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:
|
||||
* 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.
|
||||
|
|
|
@ -111,7 +111,7 @@ typedef enum {
|
|||
* In initiator mode, it means that NFC chip will send RATS automatically when
|
||||
* select and it will automatically poll for ISO14443-4 card when ISO14443A is
|
||||
* requested.
|
||||
* In target mode, with a NFC chip compiliant (ie. PN532), the chip will
|
||||
* In target mode, with a NFC chip compliant (ie. PN532), the chip will
|
||||
* emulate a 14443-4 PICC using hardware capability */
|
||||
NP_AUTO_ISO14443_4,
|
||||
/** Use automatic frames encapsulation and chaining. */
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
||||
/*
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue