EVT_UFX_DEVICE_ADDRESSED回调函数 (ufxclient.h)

客户端驱动程序的实现,用于在函数控制器上分配地址。

语法

EVT_UFX_DEVICE_ADDRESSED EvtUfxDeviceAddressed;

void EvtUfxDeviceAddressed(
  [in] UFXDEVICE unnamedParam1,
  [in] USHORT unnamedParam2
)
{...}

参数

[in] unnamedParam1

客户端驱动程序在上一次调用 UfxDeviceCreate 时收到的 USB 设备对象的句柄。

[in] unnamedParam2

要分配的新 USB 设备地址。

返回值

备注

函数主机控制器的客户端驱动程序通过调用 UfxDeviceCreate 方法, (UFX) 的 USB 函数类扩展注册其EVT_UFX_DEVICE_ADDRESSED实现。

客户端驱动程序通过调用 UfxDeviceEventComplete 方法指示此事件的完成。

示例


EVT_UFX_DEVICE_ADDRESSED UfxDevice_EvtDeviceAddressed;

VOID
UfxDevice_EvtDeviceAddressed (
    _In_ UFXDEVICE UfxDevice,
    _In_ USHORT DeviceAddress
    )
/*++

Routine Description:

    EvtDeviceAddressed handler for the UFXDEVICE object.
    Sets the Address indicated by 'DeviceAddress' on the controller.

Arguments:

    UfxDevice - UFXDEVICE object representing the device.

    DeviceAddress - USB Device Address, as determined by the UFX.

--*/
{
    UNREFERENCED_PARAMETER(DeviceAddress);

    TraceEntry();

    //
    // Set the device address on the controller
    //

    //
    // #### Insert code to set the device address on controller ####
    //
    
    UfxDeviceEventComplete(UfxDevice, STATUS_SUCCESS);

    TraceExit();
}

要求

要求
目标平台 Windows
最低 KMDF 版本 1.0
最低 UMDF 版本 2.0
标头 ufxclient.h
IRQL <=DISPATCH_LEVEL

另请参阅

UfxDeviceCreate

UfxDeviceEventComplete