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 标签。

驱动程序必须:

  • 将静态锁定字节设置为只读
  • 配置 capability 容器以停用写入权限,例如: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 标签内容。

驱动程序必须从第 4 个分块的字节 0 开始,在标签的数据区域中写入 <data>,并将数据区域的其余部分设为零。

成功时返回 0,失败时返回 -errno。

定义位于文件 nfc_tag.h 75 行


此结构体的文档是根据以下文件生成的: