• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16/**
17 * @addtogroup HdiUsb
18 *
19 * @brief Provides unified APIs for usb services to access usb drivers.
20 *
21 * A usb service can obtain a usb driver object or agent and then call APIs provided by this object or agent to
22 * access different types of usb devices based on the usb IDs, thereby obtaining usb information,
23 * subscribing to or unsubscribing from usb data, enabling or disabling a usb,
24 * setting the usb data reporting mode, and setting usb options such as the accuracy and measurement range.
25 *
26 * @since 5.1
27 * @version 1.0
28 */
29
30package ohos.hdi.usb.v2_0;
31
32import ohos.hdi.usb.v2_0.UsbTypes;
33
34/**
35 * @brief Defines the callback for reporting usb data. This callback needs to be registered when
36 * a usb user subscribes to usb data. Only after the usb is enabled, the usb data subscriber can receive
37 * usb data. For details, see {@link IUsbInterface}.
38 *
39 * @since 5.1
40 * @version 1.0
41 */
42[callback] interface IUsbdTransferCallback {
43
44    OnTransferWriteCallback([in] int status, [in] int actLength, [in] UsbIsoPacketDescriptor[] descs, [in] unsigned long userData);
45
46    OnTransferReadCallback([in] int status, [in] int actLength, [in] UsbIsoPacketDescriptor[] descs, [in] unsigned long userData);
47
48}