summaryrefslogtreecommitdiffstats
path: root/src/phFriNfc_SmtCrdFmt.h
diff options
context:
space:
mode:
authorMartijn Coenen <martijn.coenen@nxp.com>2011-01-20 01:27:17 +0100
committerJeff Hamilton <jham@android.com>2011-02-25 06:44:34 +0900
commit4f3ef022906e5d3b763fbcfe81e3f5cd53976ab5 (patch)
treed5adf3aff71553e358a8674d313132063a1ba562 /src/phFriNfc_SmtCrdFmt.h
parenta6e012a748e70ab203655d4e1c0d0a77b6515fad (diff)
downloadexternal_libnfc-nxp-4f3ef022906e5d3b763fbcfe81e3f5cd53976ab5.zip
external_libnfc-nxp-4f3ef022906e5d3b763fbcfe81e3f5cd53976ab5.tar.gz
external_libnfc-nxp-4f3ef022906e5d3b763fbcfe81e3f5cd53976ab5.tar.bz2
Support formatting / makeReadOnly() of NDEF on ICODE.
Change-Id: I2a7a185ead5de8f2b165c81dcc8ab8fb46c1ddc0
Diffstat (limited to 'src/phFriNfc_SmtCrdFmt.h')
-rw-r--r--src/phFriNfc_SmtCrdFmt.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/phFriNfc_SmtCrdFmt.h b/src/phFriNfc_SmtCrdFmt.h
index 46b0d0d..4800c41 100644
--- a/src/phFriNfc_SmtCrdFmt.h
+++ b/src/phFriNfc_SmtCrdFmt.h
@@ -246,6 +246,27 @@ typedef struct phFriNfc_Type4_AddInfo
uint8_t UpdMADBlk;
} phFriNfc_MfStd_AddInfo_t;
+
+ /*
+ * \ingroup grp_fri_smart_card_formatting
+ * \brief NFC Smart Card Formatting Component ISO-15693 Additional Information Structure
+ *
+ * This structure is used to specify additional information required to format the ISO-15693 card.
+ * \note
+ * On requirement basis,structure will be filled/modified with other parametes
+ * during the implementation phase.
+ *
+ */
+ typedef struct phFriNfc_ISO15693_AddInfo
+ {
+ /* Stores the current block executed */
+ uint16_t current_block;
+ /* Sequence executed */
+ uint8_t format_seq;
+ /* Maximum data size in the card */
+ uint16_t max_data_size;
+ }phFriNfc_ISO15693_AddInfo_t;
+
/**
* \ingroup grp_fri_smart_card_formatting
*
@@ -264,6 +285,7 @@ typedef struct phFriNfc_sNdefSmtCrdFmt_AddInfo
phFriNfc_Type2_AddInfo_t Type2Info;
phFriNfc_Type4_AddInfo_t Type4Info;
phFriNfc_MfStd_AddInfo_t MfStdInfo;
+ phFriNfc_ISO15693_AddInfo_t s_iso15693_info;
}phFriNfc_sNdefSmtCrdFmt_AddInfo_t;