WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 8204d87

Browse files
authored
fix typo
1 parent 6bc345a commit 8204d87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows-driver-docs-pr/usbcon/how-to-send-a-usb-interrupt-transfer--uwp-app-.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ A USB device can support interrupt OUT endpoints that receive data from the host
4444

4545
## Interrupt IN transfers
4646

47-
Conversely, a USB device can support interrupt IN endpoints as a way to inform the host about hardware interrupts generated by the device. Typically USB Human Interface Devices (HID) such as keyboards and pointing devices support interrupt OUT endpoints. When an interrupt occurs, the endpoint stores interrupt data but that data does not reach the host immediately. The endpoint must wait for the host controller to poll the device. Because there must be minimal delay between the time data is generated and reaches the host, it polls the device at regular intervals. A UWP app can get data received in the **[UsbInterruptInPipe](/uwp/api/Windows.Devices.Usb.UsbInterruptInPipe)**. The request that completes when data from the device is received by the host.
47+
Conversely, a USB device can support interrupt IN endpoints as a way to inform the host about hardware interrupts generated by the device. Typically USB Human Interface Devices (HID) such as keyboards and pointing devices support interrupt IN endpoints. When an interrupt occurs, the endpoint stores interrupt data but that data does not reach the host immediately. The endpoint must wait for the host controller to poll the device. Because there must be minimal delay between the time data is generated and reaches the host, it polls the device at regular intervals. A UWP app can get data received in the **[UsbInterruptInPipe](/uwp/api/Windows.Devices.Usb.UsbInterruptInPipe)**. The request that completes when data from the device is received by the host.
4848

4949
## Before you start
5050

0 commit comments

Comments
 (0)