EVT_UFX_DEVICE_PORT_DETECT回调函数 (ufxclient.h)
客户端驱动程序用于启动端口检测的实现
语法
EVT_UFX_DEVICE_PORT_DETECT EvtUfxDevicePortDetect;
void EvtUfxDevicePortDetect(
[in] UFXDEVICE unnamedParam1
)
{...}
参数
[in] unnamedParam1
客户端驱动程序在上一次调用 UfxDeviceCreate 方法时收到的 USB 设备对象的句柄。
返回值
无
备注
函数主机控制器的客户端驱动程序通过调用 UfxDeviceCreate 方法, (UFX) 的 USB 函数类扩展注册其EVT_UFX_DEVICE_PORT_DETECT实现。
客户端驱动程序必须通过调用 UfxDevicePortDetectComplete 或 UfxDevicePortDetectCompleteEx 方法来指示端口检测完成。
示例
EVT_UFX_DEVICE_PORT_DETECT UfxDevice_EvtDevicePortDetect;
VOID
UfxDevice_EvtDevicePortDetect (
_In_ UFXDEVICE UfxDevice
)
/*++
Routine Description:
Starts the port detection state machine
Arguments:
UfxDevice - UFXDEVICE object representing the device.
--*/
{
PUFXDEVICE_CONTEXT DeviceContext;
PCONTROLLER_CONTEXT ControllerContext;
DeviceContext = UfxDeviceGetContext(UfxDevice);
ControllerContext = DeviceGetControllerContext(DeviceContext->FdoWdfDevice);
//
// #### TODO: Insert code to determine port/charger type ####
//
// In this example we will return an unknown port type.
// This will allow UFX to connect to a host if one is present.
// UFX will timeout after 5 seconds if no host is present and transition to
// an invalid charger type, which will allow the controller to exit D0.
//
UfxDevicePortDetectComplete(ControllerContext->UfxDevice, UsbfnUnknownPort);
}
要求
要求 | 值 |
---|---|
目标平台 | Windows |
最低 KMDF 版本 | 1.0 |
最低 UMDF 版本 | 2.0 |
标头 | ufxclient.h |
IRQL | PASSIVE_LEVEL |