nfc_tag_device 結構體參考資料

nfc_tag_device 結構體參考資料

#include < nfc_tag.h >

資料欄位

struct hw_device_t   通用
 
int(*  init )(const struct nfc_tag_device *dev)
 
int(*  setContent )(const struct nfc_tag_device *dev, const uint8_t *data, size_t len)
 
int(*  getMemorySize )(const struct nfc_tag_device *dev)
 

詳細說明

定義位於檔案 nfc_tag.h 44 行。

欄位說明文件

struct hw_device_t common

NFC 標記裝置的常用方法。這個 必須是 nfc_tag_device_t 的第一個成員,因為這個結構體的使用者會在已知 hw_device_t 參照 nfc_tag_device_t 的情況下,將 hw_device_t 轉換為 nfc_tag_device_t 指標。

定義位於檔案 nfc_tag.h 51 行。

int(* getMemorySize)(const struct nfc_tag_device *dev)

傳回資料區塊的記憶體大小。

定義位於檔案 nfc_tag.h 的 80 行。

int(* init)(const struct nfc_tag_device *dev)

初始化 NFC 標記。

駕駛人必須:

  • 將靜態鎖定位元組設為唯讀
  • 設定能力容器,停用寫入權限,例如:0xE1 0x10 <size> 0x0F

在任何 setContent() 呼叫之前,系統會先呼叫這個函式一次。

成功時傳回 0,錯誤時傳回 -errno。

定義位於檔案 nfc_tag.h 65 行。

int(* setContent)(const struct nfc_tag_device *dev, const uint8_t *data, size_t len)

設定 NFC 標記內容。

驅動程式必須在標記的資料區域中寫入 <data>,從區塊 4 的位元組 0 開始,並將資料區域的其餘部分設為零。

成功時傳回 0,錯誤時傳回 -errno。

定義位於檔案 nfc_tag.h 75 行。


這個結構體的說明文件是由下列檔案產生: