* @details This structure defines an NDEF record structure containing various fields.
* @since HAL_MODULE_NFC 1.0
*/
-typedef struct _net_nfc_record_s {
+typedef struct _net_nfc_ndef_record_s {
uint8_t MB:1; /**< Message Begin bit. */
uint8_t ME:1; /**< Message End bit. */
uint8_t CF:1; /**< Chunk Flag bit. */
net_nfc_data_s type_s; /**< Type field. */
net_nfc_data_s id_s; /**< ID field. */
net_nfc_data_s payload_s; /**< Payload field. */
- struct _record_s *next; /**< Pointer to next record. */
+ struct _net_nfc_ndef_record_s *next; /**< Pointer to next record. */
} net_nfc_ndef_record_s;
/**