Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8d698b1e
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
8d698b1e
编写于
8月 19, 2022
作者:
O
openharmony_ci
提交者:
Gitee
8月 19, 2022
浏览文件
操作
浏览文件
下载
差异文件
!8340 修改文档中的代码文件路径
Merge pull request !8340 from 马腾飞/master
上级
651ceab2
da012c18
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
15 addition
and
9 deletion
+15
-9
zh-cn/device-dev/driver/driver-peripherals-pinauth-des.md
zh-cn/device-dev/driver/driver-peripherals-pinauth-des.md
+15
-9
未找到文件。
zh-cn/device-dev/driver/driver-peripherals-pinauth-des.md
浏览文件 @
8d698b1e
...
...
@@ -95,22 +95,28 @@ Pin_auth驱动的主要工作是为上层用户认证框架和Pin_auth服务提
以RK3568平台为例,我们提供了Pin_auth驱动DEMO实例,以下是目录结构及各部分功能简介。
```
```
text
// drivers/peripheral/pin_auth
├── BUILD.gn # 编译脚本
├── bundle.json # 组件描述文件
├── test # 测试用例
└── hdi_service # Pin_auth驱动实现
├── BUILD.gn # 编译脚本
├── inc # 头文件
└── src
├── executor_impl.cpp # 认证、录入等功能接口实现
├── pin_auth_interface_driver.cpp # Pin_auth驱动入口
└── pin_auth_interface_service.cpp # 获取执行器列表接口实现
├── adaptor # 相关算法实现
├── common # 公共接口实现
├── database # 数据库实现
├── main # 口令相关功能实现入口
└── service # Pin_auth驱动实现入口
├── inc # 头文件
└── src
├── executor_impl.cpp # 认证、录入等功能接口实现
├── pin_auth_interface_driver.cpp # Pin_auth驱动入口
└── pin_auth_interface_service.cpp # 获取执行器列表接口实现
```
下面结合DEMO实例介绍驱动开发的具体步骤。
1.
基于HDF驱动框架,按照驱动Driver Entry程序,完成pin_auth驱动开发,主要由Bind、Init、Release、Dispatch函数接口实现,详细代码参见
[
pin_auth_interface_driver.cpp
](
https://gitee.com/openharmony/drivers_peripheral/blob/master/pin_auth/hdi_service/src/pin_auth_interface_driver.cpp
)
文件。
1.
基于HDF驱动框架,按照驱动Driver Entry程序,完成pin_auth驱动开发,主要由Bind、Init、Release、Dispatch函数接口实现,详细代码参见
[
pin_auth_interface_driver.cpp
](
https://gitee.com/openharmony/drivers_peripheral/blob/master/pin_auth/hdi_service/s
ervice/s
rc/pin_auth_interface_driver.cpp
)
文件。
```
c++
// 通过自定义的HdfPinAuthInterfaceHost对象包含IoService对象和真正的HDI Service实现PinAuthInterfaceService对象
...
...
@@ -212,7 +218,7 @@ Pin_auth驱动的主要工作是为上层用户认证框架和Pin_auth服务提
1.
完成获取执行器列表接口实现,详细代码参见
[
pin_auth_interface_service.cpp
](
https://gitee.com/openharmony/drivers_peripheral/blob/master/pin_auth/hdi_service/src/pin_auth_interface_service.cpp
)
文件。
1.
完成获取执行器列表接口实现,详细代码参见
[
pin_auth_interface_service.cpp
](
https://gitee.com/openharmony/drivers_peripheral/blob/master/pin_auth/hdi_service/s
ervice/s
rc/pin_auth_interface_service.cpp
)
文件。
```
c++
// 执行器实现类
...
...
@@ -285,7 +291,7 @@ Pin_auth驱动的主要工作是为上层用户认证框架和Pin_auth服务提
1.
完成执行器每个功能接口实现,详细代码参见
[
executor_impl.cpp
](
https://gitee.com/openharmony/drivers_peripheral/blob/master/pin_auth/hdi_service/src/executor_impl.cpp
)
文件。
1.
完成执行器每个功能接口实现,详细代码参见
[
executor_impl.cpp
](
https://gitee.com/openharmony/drivers_peripheral/blob/master/pin_auth/hdi_service/s
ervice/s
rc/executor_impl.cpp
)
文件。
```
c++
// 实现获取执行器信息接口(仅作示例)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录