Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
e09604e6
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看板
未验证
提交
e09604e6
编写于
4月 19, 2022
作者:
O
openharmony_ci
提交者:
Gitee
4月 19, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3312 fix(usb):docs format change
Merge pull request !3312 from 吴成文/master
上级
77b0ea8e
39b80ab8
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
39 addition
and
38 deletion
+39
-38
zh-cn/device-dev/subsystems/figures/zh-cn_image_0000001267088285.png
...e-dev/subsystems/figures/zh-cn_image_0000001267088285.png
+0
-0
zh-cn/device-dev/subsystems/subsys-usbservice-overview.md
zh-cn/device-dev/subsystems/subsys-usbservice-overview.md
+39
-38
未找到文件。
zh-cn/device-dev/subsystems/figures/zh-cn_image_0000001267088285.png
查看替换文件 @
77b0ea8e
浏览文件 @
e09604e6
34.9 KB
|
W:
|
H:
188.4 KB
|
W:
|
H:
2-up
Swipe
Onion skin
zh-cn/device-dev/subsystems/subsys-usbservice-overview.md
浏览文件 @
e09604e6
...
@@ -8,55 +8,56 @@ USB设备分为Host设备(主机设备)和Device设备(从设备)。用
...
@@ -8,55 +8,56 @@ USB设备分为Host设备(主机设备)和Device设备(从设备)。用
**图1**
USB服务架构图
**图1**
USB服务架构图
!
[
zh-cn_image_0000001267088285
](
figures/zh-cn_image_0000001267088285.png
)
!
[
zh-cn_image_0000001267088285
](
figures/zh-cn_image_0000001267088285.png
)
-
USB
FWK/
API:基于USB Service服务,使用NAPI技术,向上提供JS接口。
-
USB API:基于USB Service服务,使用NAPI技术,向上提供JS接口。
-
USB Service:使用C++代码实现,包含Host、Device、Port三个模块。基于HDI
的接口,主要实现USB设备的
列表管理、Function 管理、Port管理、USB设备权限管理等功能。
-
USB Service:使用C++代码实现,包含Host、Device、Port三个模块。基于HDI
接口,主要实现USB设备
列表管理、Function 管理、Port管理、USB设备权限管理等功能。
-
USB HAL:使用C代码实现,基于Host
SDK和Device S
DK,封装了对USB设备的基本操作,向上提供C++接口,同时通过HDF框架接收内核上报的信息。
-
USB HAL:使用C代码实现,基于Host
DDK(Driver Develop Kit)和Device D
DK,封装了对USB设备的基本操作,向上提供C++接口,同时通过HDF框架接收内核上报的信息。
## 接口说明
## 接口说明
-
Host部分
-
Host部分
| 头文件 | 接口名称 | 功能描述 |
| 接口名称 | 功能描述 |
| -------- | -------- | -------- |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
| usb_srv_client.h | int32_t
OpenDevice(const
UsbDevice
&
device,
USBDevicePipe
&
pip); | 打开USB设备,建立连接 |
| int32_t OpenDevice(const UsbDevice &device, USBDevicePipe
&pip);
| 打开USB设备,建立连接 |
| | int32_t
HasRight(std::string
deviceName); | 判断是否有权访问设备 |
| bool HasRight(std::string deviceName); | 判断是否有权访问设备 |
| | int32_t
RequestRight(std::string
deviceName); | 请求给定软件包的临时权限以访问设备 |
| int32_t RequestRight(std::string deviceName); | 请求给定软件包的临时权限以访问设备 |
| | int32_t
GetDevices(std::vector
&
deviceList); | 获取USB设备列表 |
| int32_t GetDevices(std::vector
&deviceList);
| 获取USB设备列表 |
| | int32_t
ClaimInterface(USBDevicePipe
&
pip,
const
UsbInterface
&
interface,
bool
force); | 打开接口,并申明独占接口,必须在数据传输前执行 |
| int32_t ClaimInterface(USBDevicePipe &pip, const UsbInterface &interface, bool force); | 打开接口,并申明独占接口,必须在数据传输前执行 |
| | int32_t
ReleaseInterface(USBDevicePipe
&
pip,
const
UsbInterface
&
interface); | 关闭接口,释放接口的占用,在停止数据传输后执行 |
| int32_t ReleaseInterface(USBDevicePipe &pip, const UsbInterface
&interface);
| 关闭接口,释放接口的占用,在停止数据传输后执行 |
| | int32_t
BulkTransfer(USBDevicePipe
&
pip,
const
USBEndpoint
&
endpoint,
std::vector
&
vdata,
int32_t
timeout); | 在给定端点上执行批量数据传输,
返回读取或发送的数据长度,通过端点方向确定读取或发送数据 |
| int32_t BulkTransfer(USBDevicePipe &pip, const USBEndpoint &endpoint, std::vector &vdata, int32_t timeout); | 在给定端点上执行批量数据传输, 返回读取或发送的数据长度,通过端点方向确定读取或发送数据 |
| | int32_t
ControlTransfer(USBDevicePipe
&
pip,
const
UsbCtrlTransfer
&
ctrl,
std::vector
&
vdata); | 对此设备执行端点零的控制事务,传输方向由请求类型决定 |
| int32_t ControlTransfer(USBDevicePipe &pip, const UsbCtrlTransfer &ctrl, std::vector
&vdata);
| 对此设备执行端点零的控制事务,传输方向由请求类型决定 |
| | int32_t
SetConfiguration(USBDevicePipe
&
pip,
const
USBConfig
&
config); | 设置设备当前使用的配置,通过配置值进行指定 |
| int32_t SetConfiguration(USBDevicePipe &pip, const USBConfig
&config);
| 设置设备当前使用的配置,通过配置值进行指定 |
| | int32_t
SetInterface(USBDevicePipe
&
pipe,
const
UsbInterface
&
interface); | 设置指定接口的备选设置,用于在具有相同ID但不同备用设置的两个接口之间进行选择 |
| int32_t SetInterface(USBDevicePipe &pipe, const UsbInterface
&interface);
| 设置指定接口的备选设置,用于在具有相同ID但不同备用设置的两个接口之间进行选择 |
| | int32_t
GetRawDescriptors(std::vector
&
vdata); | 获取原始的USB描述符 |
| int32_t GetRawDescriptors(std::vector
&vdata);
| 获取原始的USB描述符 |
| | int32_t
GetFileDescriptor(); | 获取文件描述符 |
| int32_t GetFileDescriptor(); | 获取文件描述符 |
| | bool
Close(const
USBDevicePipe
&
pip); | 关闭设备,释放与设备相关的所有系统资源 |
| bool Close(const USBDevicePipe
&pip);
| 关闭设备,释放与设备相关的所有系统资源 |
| | int32_t
PipeRequestWait(USBDevicePipe
&
pip,
int64_t
timeout,
UsbRequest
&
req); | 获取异步传输结果 |
| int32_t PipeRequestWait(USBDevicePipe &pip, int64_t timeout, UsbRequest
&req);
| 获取异步传输结果 |
| | int32_t
RequestInitialize(UsbRequest
&
request); | 初始化异步数据传输request |
| int32_t RequestInitialize(UsbRequest
&request);
| 初始化异步数据传输request |
| | int32_t
RequestFree(UsbRequest
&
request); | 释放异步数据传输request |
| int32_t RequestFree(UsbRequest
&request);
| 释放异步数据传输request |
| | int32_t
RequestAbort(UsbRequest
&
request); | 取消待处理的数据请求 |
| int32_t RequestAbort(UsbRequest
&request);
| 取消待处理的数据请求 |
| | int32_t
RequestQueue(UsbRequest
&
request); | 将指定的端点进行异步数据发送或者接收请求,数据传输方向由端点方向决定 |
| int32_t RequestQueue(UsbRequest
&request);
| 将指定的端点进行异步数据发送或者接收请求,数据传输方向由端点方向决定 |
| | int32_t
BulkRequstDataSize(const
UsbDev
&
dev,
const
UsbPipe
&
pipe,
uint32_t
&
length); | 异步批量读取数据,传输大量数据时使用 |
| int32_t RegBulkCallback(USBDevicePipe &pip, const USBEndpoint &endpoint, const sptr
<IRemoteObject>
&cb);
| 注册批量传输异步回调函数 |
| | int32_t
BulkReadData(const
UsbDev
&
dev,
const
UsbPipe
&
pipe,
std::vector
&
data); | 与BulkReadData配合使用,获取读取结果 |
| int32_t UnRegBulkCallback(USBDevicePipe &pip, const USBEndpoint
&endpoint);
| 注销批量传输异步回调函 |
| | int32_t
BulkWriteData(const
UsbDev
&
dev,
const
UsbPipe
&
pipe,
const
std::vector
&
data); | 异步批量写数据,传输大量数据时使用 |
| int32_t BulkRead(USBDevicePipe &pip, const USBEndpoint &endpoint, sptr
<Ashmem>
&ashmem);
| 批量传输异步读数据 |
| | int32_t
BulkGetWriteCompleteLength(const
UsbDev
&
dev,
const
UsbPipe
&
pipe,
uint32_t
&
length); | 与BulkWriteData配合使用,获取写入状态,由length描述 |
| int32_t BulkWrite(USBDevicePipe &pip, const USBEndpoint &endpoint, sptr
<Ashmem>
&ashmem);
| 批量传输异步写 |
| int32_t BulkCancel(USBDevicePipe &pip, const USBEndpoint
&endpoint);
| 批量传输异步取消接口,用于取消当前接口的异步批量读写操作 |
-
Device部分
-
Device部分
| 头文件 | 接口名称 | 功能描述 |
| 接口名称 | 功能描述 |
| --------
| -------- |
-------- |
| --------
------------------------------------------ | ----------------------------------------------
-------- |
|
usb_srv_client.h | int32_t
GetCurrentFunctions(int32_t
&
funcs); | 获取设备模式下的当前USB功能列表的数字组合掩码 |
|
int32_t GetCurrentFunctions(int32_t
&funcs);
| 获取设备模式下的当前USB功能列表的数字组合掩码 |
|
| int32_t
SetCurrentFunctions(int32_t
funcs); | 在设备模式下设置当前的USB功能列表 |
|
int32_t SetCurrentFunctions(int32_t funcs); | 在设备模式下设置当前的USB功能列表 |
|
| int32_t
UsbFunctionsFromString(std::string
funcs); | 将给定的功能列表描述字符串转换为功能列表的数字组合掩码 |
|
int32_t UsbFunctionsFromString(std::string funcs); | 将给定的功能列表描述字符串转换为功能列表的数字组合掩码 |
|
| std::string
UsbFunctionsToString(int32_t
funcs); | 将给定的功能列表的数字组合掩码转换为功能列表描述字符串 |
|
std::string UsbFunctionsToString(int32_t funcs); | 将给定的功能列表的数字组合掩码转换为功能列表描述字符串 |
-
Port部分
-
Port部分
| 头文件 | 接口名称 | 功能描述 |
| 接口名称 | 功能描述 |
| --------
| -------- |
-------- |
| --------
---------------------------------------------------- | ------------------------------------------------
-------- |
|
usb_srv_client.h | int32_t
GetSupportedModes(int32_t
portId,
int32_t
&
supportedModes); | 获取指定的端口支持的模式列表的组合掩码 |
|
int32_t GetSupportedModes(int32_t portId, int32_t
&supportedModes);
| 获取指定的端口支持的模式列表的组合掩码 |
|
| int32_t
SetPortRole(int32_t
portId,
int32_t
powerRole,
int32_t
dataRole); | 设置指定的端口支持的角色模式,包含充电角色、数据传输角色 |
|
int32_t SetPortRole(int32_t portId, int32_t powerRole, int32_t dataRole); | 设置指定的端口支持的角色模式,包含充电角色、数据传输角色 |
|
| int32_t
GetPorts(std::vector
&
usbPorts); | 获取物理USB端口描述信息列表
|
|
int32_t GetPorts(std::vector
&usbPorts);
| 获取物理USB端口描述信息列表
|
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录