Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
7b395d18
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看板
提交
7b395d18
编写于
12月 22, 2022
作者:
L
luo-wei246
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:USB document update
Signed-off-by:
N
luo-wei246
<
luowei137@huawei.com
>
上级
9393eaeb
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
11 addition
and
9 deletion
+11
-9
zh-cn/application-dev/device/usb-guidelines.md
zh-cn/application-dev/device/usb-guidelines.md
+6
-6
zh-cn/application-dev/reference/apis/js-apis-usb.md
zh-cn/application-dev/reference/apis/js-apis-usb.md
+5
-3
未找到文件。
zh-cn/application-dev/device/usb-guidelines.md
浏览文件 @
7b395d18
...
...
@@ -17,17 +17,17 @@ USB类开放能力如下,具体请查阅[API参考文档](../reference/apis/js
| 接口名 | 描述 |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
| hasRight(deviceName: string): boolean |
如果“使用者”(如各种App或系统)有权访问设备则返回true;无权访问设备则返回false。
|
| requestRight(deviceName: string): Promise
<
boolean
>
| 请求
给定软件包的临时权限以访问设备。
|
| hasRight(deviceName: string): boolean |
判断是否有权访问该设备
|
| requestRight(deviceName: string): Promise
<
boolean
>
| 请求
软件包的临时权限以访问设备。使用Promise异步回调。
|
| removeRight(deviceName: string): boolean | 移除软件包对设备的访问权限。|
| connectDevice(device: USBDevice): Readonly
<
USBDevicePipe
>
| 根据
`getDevices()`
返回的设备信息打开USB设备。 |
| getDevices(): Array
<
Readonly
<
USBDevice
>>
|
返回USB设备
列表。 |
| getDevices(): Array
<
Readonly
<
USBDevice
>>
|
获取接入主设备的USB设备列表。如果没有设备接入,那么将会返回一个空的
列表。 |
| setConfiguration(pipe: USBDevicePipe, config: USBConfig): number | 设置设备的配置。 |
| setInterface(pipe: USBDevicePipe, iface: USBInterface): number | 设置设备的接口。 |
| claimInterface(pipe: USBDevicePipe, iface: USBInterface,force?: boolean): number |
获取
接口。 |
| claimInterface(pipe: USBDevicePipe, iface: USBInterface,force?: boolean): number |
注册通信
接口。 |
| bulkTransfer(pipe: USBDevicePipe, endpoint: USBEndpoint, buffer: Uint8Array, timeout?: number): Promise
<
number
>
| 批量传输。 |
| closePipe(pipe: USBDevicePipe): number | 关闭设备消息控制通道。 |
| releaseInterface(pipe: USBDevicePipe, iface: USBInterface): number | 释放接口。 |
| releaseInterface(pipe: USBDevicePipe, iface: USBInterface): number | 释放
注册过的通信
接口。 |
| getFileDescriptor(pipe: USBDevicePipe): number | 获取文件描述符。 |
| getRawDescriptor(pipe: USBDevicePipe): Uint8Array | 获取原始的USB描述符。 |
| controlTransfer(pipe: USBDevicePipe, contrlparam: USBControlParams, timeout?: number): Promise
<
number
>
| 控制传输。 |
...
...
@@ -42,7 +42,7 @@ USB设备可作为Host设备连接Device设备进行数据传输。开发示例
```
js
// 导入USB接口api包。
import
usb
from
'
@ohos.usb
'
;
import
usb
from
'
@ohos.usb
V9
'
;
// 获取设备列表。
let
deviceList
=
usb
.
getDevices
();
/*
...
...
zh-cn/application-dev/reference/apis/js-apis-usb.md
浏览文件 @
7b395d18
...
...
@@ -87,7 +87,7 @@ console.log(`devicesList = ${JSON.stringify(devicesList)}`);
connectDevice(device: USBDevice): Readonly
<
USBDevicePipe
>
打开USB设备。
根据getDevices()返回的设备信息
打开USB设备。
需要调用
[
usb.getDevices
](
#usbgetdevices
)
获取设备信息以及device,再调用
[
usb.requestRight
](
#usbrequestright
)
请求使用该设备的权限。
...
...
@@ -134,6 +134,8 @@ hasRight(deviceName: string): boolean
判断是否有权访问该设备。
如果“使用者”(如各种App或系统)有权访问设备则返回true;无权访问设备则返回false。
**系统能力:**
SystemCapability.USB.USBManager
**参数:**
...
...
@@ -187,7 +189,7 @@ usb.requestRight(devicesName).then((ret) => {
## usb.removeRight
removeRight(deviceName: string): boolean
;
removeRight(deviceName: string): boolean
移除软件包访问设备的权限。
...
...
@@ -216,7 +218,7 @@ if (usb.removeRight(devicesName) {
## usb.addRight
addRight(bundleName: string, deviceName: string): boolean
;
addRight(bundleName: string, deviceName: string): boolean
添加软件包访问设备的权限。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录