From d49c549bcd0d5720ed354c56b34900a882705320 Mon Sep 17 00:00:00 2001 From: liyan Date: Wed, 27 Jul 2022 14:59:20 +0000 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5zh-cn/device=5Fapi/hdi/input/?= =?UTF-8?q?input=5Ftype.h=E4=B8=AD=E6=96=B0=E5=A2=9E=E5=AE=8F=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=20Signed-off-by:=20li-yan339=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-cn/device-dev/reference/hdi-apis/input__type_8h.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zh-cn/device-dev/reference/hdi-apis/input__type_8h.md b/zh-cn/device-dev/reference/hdi-apis/input__type_8h.md index 882f771d12..312d1c9792 100644 --- a/zh-cn/device-dev/reference/hdi-apis/input__type_8h.md +++ b/zh-cn/device-dev/reference/hdi-apis/input__type_8h.md @@ -32,6 +32,10 @@ | **VENDOR_NAME_LEN**   10 | 厂商名称长度。 | | **SELF_TEST_RESULT_LEN**   20 | 自测结果长度。 | | **DEV_MANAGER_SERVICE_NAME**   "hdf_input_host" | Input设备节点服务名称。 | +| **DIV_ROUND_UP(nr, d)**  (((nr) + (d) - 1) / (d)) | 向上取整计算公式。| +| **BYTE_HAS_BITS**  8 | 一个字节所包含的比特数。 | +| **BITS_TO_UINT64(count)**  DIV_ROUND_UP(count, BYTE_HAS_BITS * sizeof(uint64_t)) | 比特与64位无符号整数的转换公式。 | +| **HDF_FF_CNT**  (0x7f + 1) | Input设备发送力反馈命令的数量最大值。| ### 枚举 -- GitLab