usb 2.0.0-alpha.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +1 -0
- package/.gitmodules +1 -1
- package/CHANGELOG.md +91 -0
- package/README.md +570 -0
- package/binding.gyp +2 -2
- package/dist/index.d.ts +16 -5
- package/dist/index.js +135 -5
- package/dist/index.js.map +1 -1
- package/dist/usb/bindings.d.ts +13 -0
- package/dist/usb/bindings.js +2 -1
- package/dist/usb/bindings.js.map +1 -1
- package/dist/usb/index.d.ts +0 -2
- package/dist/usb/index.js +75 -112
- package/dist/usb/index.js.map +1 -1
- package/dist/usb/interface.js.map +1 -1
- package/dist/webusb/index.d.ts +28 -19
- package/dist/webusb/index.js +152 -66
- package/dist/webusb/index.js.map +1 -1
- package/dist/webusb/webusb-device.d.ts +1 -1
- package/dist/webusb/webusb-device.js +15 -6
- package/dist/webusb/webusb-device.js.map +1 -1
- package/libusb/.private/pre-commit.sh +7 -1
- package/libusb/.travis.yml +49 -0
- package/libusb/AUTHORS +44 -3
- package/libusb/Brewfile +4 -0
- package/libusb/ChangeLog +74 -2
- package/libusb/README.md +32 -0
- package/libusb/TODO +1 -1
- package/libusb/Xcode/common.xcconfig +12 -0
- package/libusb/Xcode/config.h +0 -3
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +959 -1
- package/libusb/android/README +4 -2
- package/libusb/android/config.h +0 -6
- package/libusb/appveyor.yml +41 -0
- package/libusb/appveyor_cygwin.bat +11 -0
- package/libusb/appveyor_minGW.bat +19 -0
- package/libusb/autogen.sh +1 -1
- package/libusb/bootstrap.sh +3 -16
- package/libusb/configure.ac +108 -80
- package/libusb/doc/doxygen.cfg.in +1785 -739
- package/libusb/examples/Makefile.am +1 -1
- package/libusb/examples/dpfp.c +3 -1
- package/libusb/examples/dpfp_threaded.c +23 -10
- package/libusb/examples/ezusb.c +3 -3
- package/libusb/examples/ezusb.h +2 -2
- package/libusb/examples/fxload.c +31 -9
- package/libusb/examples/hotplugtest.c +35 -7
- package/libusb/examples/listdevs.c +3 -1
- package/libusb/examples/sam3u_benchmark.c +3 -3
- package/libusb/examples/testlibusb.c +277 -0
- package/libusb/examples/xusb.c +40 -34
- package/libusb/libusb/Makefile.am +49 -23
- package/libusb/libusb/core.c +855 -457
- package/libusb/libusb/descriptor.c +72 -78
- package/libusb/libusb/hotplug.c +122 -76
- package/libusb/libusb/hotplug.h +42 -25
- package/libusb/libusb/io.c +625 -390
- package/libusb/libusb/libusb-1.0.def +12 -0
- package/libusb/libusb/libusb.h +218 -150
- package/libusb/libusb/libusbi.h +346 -176
- package/libusb/libusb/os/darwin_usb.c +604 -319
- package/libusb/libusb/os/darwin_usb.h +61 -20
- package/libusb/libusb/os/haiku_pollfs.cpp +367 -0
- package/libusb/libusb/os/haiku_usb.h +113 -0
- package/libusb/libusb/os/haiku_usb_backend.cpp +533 -0
- package/libusb/libusb/os/haiku_usb_raw.cpp +267 -0
- package/libusb/libusb/os/haiku_usb_raw.h +188 -0
- package/libusb/libusb/os/linux_netlink.c +186 -146
- package/libusb/libusb/os/linux_udev.c +36 -14
- package/libusb/libusb/os/linux_usbfs.c +426 -225
- package/libusb/libusb/os/linux_usbfs.h +5 -3
- package/libusb/libusb/os/netbsd_usb.c +21 -77
- package/libusb/libusb/os/openbsd_usb.c +32 -115
- package/libusb/libusb/os/poll_posix.c +38 -5
- package/libusb/libusb/os/poll_posix.h +3 -0
- package/libusb/libusb/os/poll_windows.c +277 -626
- package/libusb/libusb/os/poll_windows.h +11 -44
- package/libusb/libusb/os/sunos_usb.c +1695 -0
- package/libusb/libusb/os/sunos_usb.h +80 -0
- package/libusb/libusb/os/threads_posix.c +24 -26
- package/libusb/libusb/os/threads_posix.h +73 -21
- package/libusb/libusb/os/threads_windows.c +71 -157
- package/libusb/libusb/os/threads_windows.h +68 -44
- package/libusb/libusb/os/wince_usb.c +276 -420
- package/libusb/libusb/os/wince_usb.h +23 -28
- package/libusb/libusb/os/windows_common.h +78 -58
- package/libusb/libusb/os/windows_nt_common.c +1010 -0
- package/libusb/libusb/os/windows_nt_common.h +110 -0
- package/libusb/libusb/os/windows_nt_shared_types.h +147 -0
- package/libusb/libusb/os/windows_usbdk.c +830 -0
- package/libusb/libusb/os/windows_usbdk.h +103 -0
- package/libusb/libusb/os/windows_winusb.c +4391 -0
- package/libusb/libusb/os/windows_winusb.h +783 -0
- package/libusb/libusb/strerror.c +41 -7
- package/libusb/libusb/sync.c +41 -13
- package/libusb/libusb/version.h +1 -1
- package/libusb/libusb/version_nano.h +1 -1
- package/libusb/libusb-1.0.pc.in +1 -1
- package/libusb/msvc/appveyor.bat +27 -0
- package/libusb/msvc/config.h +5 -4
- package/libusb/msvc/ddk_build.cmd +87 -43
- package/libusb/msvc/fxload_2010.vcxproj +24 -104
- package/libusb/msvc/fxload_2012.vcxproj +24 -107
- package/libusb/msvc/fxload_2013.vcxproj +24 -107
- package/libusb/msvc/fxload_2015.vcxproj +91 -0
- package/libusb/msvc/fxload_2017.vcxproj +114 -0
- package/libusb/msvc/fxload_sources +1 -1
- package/libusb/msvc/getopt_2010.vcxproj +16 -75
- package/libusb/msvc/getopt_2012.vcxproj +16 -79
- package/libusb/msvc/getopt_2013.vcxproj +16 -79
- package/libusb/msvc/getopt_2015.vcxproj +73 -0
- package/libusb/msvc/getopt_2017.vcxproj +98 -0
- package/libusb/msvc/getopt_sources +6 -2
- package/libusb/msvc/hotplugtest_2010.vcxproj +18 -99
- package/libusb/msvc/hotplugtest_2012.vcxproj +18 -102
- package/libusb/msvc/hotplugtest_2013.vcxproj +18 -102
- package/libusb/msvc/hotplugtest_2015.vcxproj +83 -0
- package/libusb/msvc/hotplugtest_2017.vcxproj +106 -0
- package/libusb/msvc/hotplugtest_sources +1 -1
- package/libusb/msvc/libusb_2005.sln +20 -20
- package/libusb/msvc/libusb_2010.sln +57 -46
- package/libusb/msvc/libusb_2012.sln +57 -46
- package/libusb/msvc/libusb_2013.sln +57 -50
- package/libusb/msvc/libusb_2015.sln +59 -52
- package/libusb/msvc/libusb_2017.sln +186 -0
- package/libusb/msvc/libusb_dll.dsp +2 -2
- package/libusb/msvc/libusb_dll_2005.vcproj +30 -2
- package/libusb/msvc/libusb_dll_2010.vcxproj +26 -90
- package/libusb/msvc/libusb_dll_2012.vcxproj +28 -96
- package/libusb/msvc/libusb_dll_2013.vcxproj +28 -96
- package/libusb/msvc/libusb_dll_2015.vcxproj +107 -0
- package/libusb/msvc/libusb_dll_2017.vcxproj +134 -0
- package/libusb/msvc/libusb_dll_wince.vcproj +9 -1
- package/libusb/msvc/libusb_sources +10 -5
- package/libusb/msvc/libusb_static.dsp +2 -2
- package/libusb/msvc/libusb_static_2005.vcproj +32 -4
- package/libusb/msvc/libusb_static_2010.vcxproj +24 -83
- package/libusb/msvc/libusb_static_2012.vcxproj +25 -87
- package/libusb/msvc/libusb_static_2013.vcxproj +25 -87
- package/libusb/msvc/libusb_static_2015.vcxproj +98 -0
- package/libusb/msvc/libusb_static_2017.vcxproj +117 -0
- package/libusb/msvc/libusb_static_wince.vcproj +20 -26
- package/libusb/msvc/libusb_wince.sln +88 -88
- package/libusb/msvc/listdevs_2010.vcxproj +16 -99
- package/libusb/msvc/listdevs_2012.vcxproj +16 -102
- package/libusb/msvc/listdevs_2013.vcxproj +16 -102
- package/libusb/msvc/listdevs_2015.vcxproj +83 -0
- package/libusb/msvc/listdevs_2017.vcxproj +106 -0
- package/libusb/msvc/listdevs_sources +2 -1
- package/libusb/msvc/stress_2010.vcxproj +20 -101
- package/libusb/msvc/stress_2012.vcxproj +20 -104
- package/libusb/msvc/stress_2013.vcxproj +20 -104
- package/libusb/msvc/stress_2015.vcxproj +87 -0
- package/libusb/msvc/stress_2017.vcxproj +110 -0
- package/libusb/msvc/stress_sources +21 -0
- package/libusb/msvc/testlibusb_2010.vcxproj +82 -0
- package/libusb/msvc/testlibusb_2012.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2013.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2015.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2017.vcxproj +106 -0
- package/libusb/msvc/testlibusb_sources +20 -0
- package/libusb/msvc/xusb_2010.vcxproj +17 -98
- package/libusb/msvc/xusb_2012.vcxproj +17 -101
- package/libusb/msvc/xusb_2013.vcxproj +17 -101
- package/libusb/msvc/xusb_2015.vcxproj +83 -0
- package/libusb/msvc/xusb_2017.vcxproj +106 -0
- package/libusb/msvc/xusb_sources +1 -1
- package/libusb/tests/stress.c +2 -2
- package/libusb/tests/testlib.c +0 -4
- package/libusb/travis-autogen.sh +39 -0
- package/libusb.gypi +13 -2
- package/package.json +23 -13
- package/prebuilds/android-arm/node.napi.armv7.node +0 -0
- package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
- package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/linux-ia32/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/prebuilds/win32-ia32/node.napi.node +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/src/device.cc +7 -7
- package/src/node_usb.cc +43 -1
- package/src/node_usb.h +1 -0
- package/src/uv_async_queue.h +33 -25
- package/test/usb.coffee +12 -4
- package/tsc/index.ts +68 -8
- package/tsc/usb/bindings.ts +19 -1
- package/tsc/usb/index.ts +66 -68
- package/tsc/usb/interface.ts +2 -2
- package/tsc/webusb/index.ts +187 -75
- package/tsc/webusb/webusb-device.ts +28 -17
- package/.github/workflows/prebuild.yml +0 -48
- package/Readme.md +0 -339
- package/dist/webusb/typed-event-target.d.ts +0 -11
- package/dist/webusb/typed-event-target.js +0 -21
- package/dist/webusb/typed-event-target.js.map +0 -1
- package/docs/assets/css/main.css +0 -2660
- package/docs/assets/images/icons.png +0 -0
- package/docs/assets/images/icons@2x.png +0 -0
- package/docs/assets/images/widgets.png +0 -0
- package/docs/assets/images/widgets@2x.png +0 -0
- package/docs/assets/js/main.js +0 -248
- package/docs/assets/js/search.js +0 -1
- package/docs/classes/usb_bindings.device.html +0 -1338
- package/docs/classes/usb_bindings.libusbexception.html +0 -234
- package/docs/classes/usb_bindings.transfer.html +0 -344
- package/docs/classes/usb_capability.capability.html +0 -297
- package/docs/classes/usb_device.extendeddevice.html +0 -766
- package/docs/classes/usb_endpoint.endpoint.html +0 -472
- package/docs/classes/usb_endpoint.inendpoint.html +0 -766
- package/docs/classes/usb_endpoint.outendpoint.html +0 -582
- package/docs/classes/usb_interface.interface.html +0 -648
- package/docs/classes/webusb.webusb-1.html +0 -615
- package/docs/classes/webusb_mutex.mutex.html +0 -270
- package/docs/classes/webusb_typed_event_target.typedeventtarget.html +0 -443
- package/docs/classes/webusb_webusb_device.webusbdevice.html +0 -904
- package/docs/index.html +0 -500
- package/docs/interfaces/usb.deviceevents.html +0 -242
- package/docs/interfaces/usb_descriptors.bosdescriptor.html +0 -293
- package/docs/interfaces/usb_descriptors.capabilitydescriptor.html +0 -274
- package/docs/interfaces/usb_descriptors.configdescriptor.html +0 -388
- package/docs/interfaces/usb_descriptors.devicedescriptor.html +0 -464
- package/docs/interfaces/usb_descriptors.endpointdescriptor.html +0 -370
- package/docs/interfaces/usb_descriptors.interfacedescriptor.html +0 -407
- package/docs/interfaces/webusb.usboptions.html +0 -226
- package/docs/modules/index.html +0 -173
- package/docs/modules/usb.html +0 -173
- package/docs/modules/usb_bindings.html +0 -2319
- package/docs/modules/usb_capability.html +0 -156
- package/docs/modules/usb_descriptors.html +0 -176
- package/docs/modules/usb_device.html +0 -156
- package/docs/modules/usb_endpoint.html +0 -164
- package/docs/modules/usb_interface.html +0 -156
- package/docs/modules/webusb.html +0 -165
- package/docs/modules/webusb_mutex.html +0 -156
- package/docs/modules/webusb_typed_event_target.html +0 -156
- package/docs/modules/webusb_webusb_device.html +0 -156
- package/docs/modules.html +0 -156
- package/libusb/INSTALL +0 -234
- package/libusb/README +0 -28
- package/libusb/libusb/os/windows_usb.c +0 -5347
- package/libusb/libusb/os/windows_usb.h +0 -971
- package/libusb/msvc/fxload_2010.vcxproj.filters +0 -25
- package/libusb/msvc/fxload_2012.vcxproj.filters +0 -25
- package/libusb/msvc/getopt_2010.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2012.vcxproj.filters +0 -26
- package/libusb/msvc/hotplugtest_2010.vcxproj.filters +0 -14
- package/libusb/msvc/hotplugtest_2012.vcxproj.filters +0 -14
- package/libusb/msvc/libusb_dll_2010.vcxproj.filters +0 -81
- package/libusb/msvc/libusb_dll_2012.vcxproj.filters +0 -84
- package/libusb/msvc/libusb_static_2010.vcxproj.filters +0 -74
- package/libusb/msvc/libusb_static_2012.vcxproj.filters +0 -74
- package/libusb/msvc/listdevs_2010.vcxproj.filters +0 -14
- package/libusb/msvc/listdevs_2012.vcxproj.filters +0 -14
- package/libusb/msvc/stress_2010.vcxproj.filters +0 -25
- package/libusb/msvc/stress_2012.vcxproj.filters +0 -25
- package/libusb/msvc/xusb_2010.vcxproj.filters +0 -14
- package/libusb/msvc/xusb_2012.vcxproj.filters +0 -14
- package/tsc/webusb/typed-event-target.ts +0 -23
|
@@ -1,472 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html class="default no-js">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<title>Endpoint | Node USB</title>
|
|
7
|
-
<meta name="description" content="Documentation for Node USB">
|
|
8
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
-
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
|
-
<script async src="../assets/js/search.js" id="search-script"></script>
|
|
11
|
-
</head>
|
|
12
|
-
<body>
|
|
13
|
-
<header>
|
|
14
|
-
<div class="tsd-page-toolbar">
|
|
15
|
-
<div class="container">
|
|
16
|
-
<div class="table-wrap">
|
|
17
|
-
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
|
|
18
|
-
<div class="field">
|
|
19
|
-
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
|
20
|
-
<input id="tsd-search-field" type="text" />
|
|
21
|
-
</div>
|
|
22
|
-
<ul class="results">
|
|
23
|
-
<li class="state loading">Preparing search index...</li>
|
|
24
|
-
<li class="state failure">The search index is not available</li>
|
|
25
|
-
</ul>
|
|
26
|
-
<a href="../index.html" class="title">Node USB</a>
|
|
27
|
-
</div>
|
|
28
|
-
<div class="table-cell" id="tsd-widgets">
|
|
29
|
-
<div id="tsd-filter">
|
|
30
|
-
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
|
31
|
-
<div class="tsd-filter-group">
|
|
32
|
-
<div class="tsd-select" id="tsd-filter-visibility">
|
|
33
|
-
<span class="tsd-select-label">All</span>
|
|
34
|
-
<ul class="tsd-select-list">
|
|
35
|
-
<li data-value="public">Public</li>
|
|
36
|
-
<li data-value="protected">Public/Protected</li>
|
|
37
|
-
<li data-value="private" class="selected">All</li>
|
|
38
|
-
</ul>
|
|
39
|
-
</div>
|
|
40
|
-
<input type="checkbox" id="tsd-filter-inherited" checked />
|
|
41
|
-
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
|
44
|
-
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
</div>
|
|
48
|
-
</div>
|
|
49
|
-
<div class="tsd-page-title">
|
|
50
|
-
<div class="container">
|
|
51
|
-
<ul class="tsd-breadcrumb">
|
|
52
|
-
<li>
|
|
53
|
-
<a href="../modules.html">Node USB</a>
|
|
54
|
-
</li>
|
|
55
|
-
<li>
|
|
56
|
-
<a href="../modules/usb_endpoint.html">usb/endpoint</a>
|
|
57
|
-
</li>
|
|
58
|
-
<li>
|
|
59
|
-
<a href="usb_endpoint.endpoint.html">Endpoint</a>
|
|
60
|
-
</li>
|
|
61
|
-
</ul>
|
|
62
|
-
<h1>Class Endpoint</h1>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
</header>
|
|
66
|
-
<div class="container container-main">
|
|
67
|
-
<div class="row">
|
|
68
|
-
<div class="col-8 col-content">
|
|
69
|
-
<section class="tsd-panel tsd-comment">
|
|
70
|
-
<div class="tsd-comment tsd-typography">
|
|
71
|
-
<div class="lead">
|
|
72
|
-
<p>Common base for InEndpoint and OutEndpoint.</p>
|
|
73
|
-
</div>
|
|
74
|
-
</div>
|
|
75
|
-
</section>
|
|
76
|
-
<section class="tsd-panel tsd-hierarchy">
|
|
77
|
-
<h3>Hierarchy</h3>
|
|
78
|
-
<ul class="tsd-hierarchy">
|
|
79
|
-
<li>
|
|
80
|
-
<span class="tsd-signature-type">EventEmitter</span>
|
|
81
|
-
<ul class="tsd-hierarchy">
|
|
82
|
-
<li>
|
|
83
|
-
<span class="target">Endpoint</span>
|
|
84
|
-
<ul class="tsd-hierarchy">
|
|
85
|
-
<li>
|
|
86
|
-
<a href="usb_endpoint.inendpoint.html" class="tsd-signature-type" data-tsd-kind="Class">InEndpoint</a>
|
|
87
|
-
</li>
|
|
88
|
-
<li>
|
|
89
|
-
<a href="usb_endpoint.outendpoint.html" class="tsd-signature-type" data-tsd-kind="Class">OutEndpoint</a>
|
|
90
|
-
</li>
|
|
91
|
-
</ul>
|
|
92
|
-
</li>
|
|
93
|
-
</ul>
|
|
94
|
-
</li>
|
|
95
|
-
</ul>
|
|
96
|
-
</section>
|
|
97
|
-
<section class="tsd-panel-group tsd-index-group">
|
|
98
|
-
<h2>Index</h2>
|
|
99
|
-
<section class="tsd-panel tsd-index-panel">
|
|
100
|
-
<div class="tsd-index-content">
|
|
101
|
-
<section class="tsd-index-section ">
|
|
102
|
-
<h3>Constructors</h3>
|
|
103
|
-
<ul class="tsd-index-list">
|
|
104
|
-
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite"><a href="usb_endpoint.endpoint.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
|
105
|
-
</ul>
|
|
106
|
-
</section>
|
|
107
|
-
<section class="tsd-index-section ">
|
|
108
|
-
<h3>Properties</h3>
|
|
109
|
-
<ul class="tsd-index-list">
|
|
110
|
-
<li class="tsd-kind-property tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#address" class="tsd-kind-icon">address</a></li>
|
|
111
|
-
<li class="tsd-kind-property tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#descriptor" class="tsd-kind-icon">descriptor</a></li>
|
|
112
|
-
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><a href="usb_endpoint.endpoint.html#device" class="tsd-kind-icon">device</a></li>
|
|
113
|
-
<li class="tsd-kind-property tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#direction" class="tsd-kind-icon">direction</a></li>
|
|
114
|
-
<li class="tsd-kind-property tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#timeout" class="tsd-kind-icon">timeout</a></li>
|
|
115
|
-
<li class="tsd-kind-property tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#transfertype" class="tsd-kind-icon">transfer<wbr>Type</a></li>
|
|
116
|
-
</ul>
|
|
117
|
-
</section>
|
|
118
|
-
<section class="tsd-index-section ">
|
|
119
|
-
<h3>Methods</h3>
|
|
120
|
-
<ul class="tsd-index-list">
|
|
121
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#clearhalt" class="tsd-kind-icon">clear<wbr>Halt</a></li>
|
|
122
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><a href="usb_endpoint.endpoint.html#maketransfer" class="tsd-kind-icon">make<wbr>Transfer</a></li>
|
|
123
|
-
</ul>
|
|
124
|
-
</section>
|
|
125
|
-
</div>
|
|
126
|
-
</section>
|
|
127
|
-
</section>
|
|
128
|
-
<section class="tsd-panel-group tsd-member-group ">
|
|
129
|
-
<h2>Constructors</h2>
|
|
130
|
-
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
|
|
131
|
-
<a name="constructor" class="tsd-anchor"></a>
|
|
132
|
-
<h3>constructor</h3>
|
|
133
|
-
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
|
|
134
|
-
<li class="tsd-signature tsd-kind-icon">new <wbr>Endpoint<span class="tsd-signature-symbol">(</span>device<span class="tsd-signature-symbol">: </span><a href="usb_bindings.device.html" class="tsd-signature-type" data-tsd-kind="Class">Device</a>, descriptor<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb_descriptors.endpointdescriptor.html" class="tsd-signature-type" data-tsd-kind="Interface">EndpointDescriptor</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="usb_endpoint.endpoint.html" class="tsd-signature-type" data-tsd-kind="Class">Endpoint</a></li>
|
|
135
|
-
</ul>
|
|
136
|
-
<ul class="tsd-descriptions">
|
|
137
|
-
<li class="tsd-description">
|
|
138
|
-
<aside class="tsd-sources">
|
|
139
|
-
<p>Overrides EventEmitter.constructor</p>
|
|
140
|
-
<ul>
|
|
141
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L21">tsc/usb/endpoint.ts:21</a></li>
|
|
142
|
-
</ul>
|
|
143
|
-
</aside>
|
|
144
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
145
|
-
<ul class="tsd-parameters">
|
|
146
|
-
<li>
|
|
147
|
-
<h5>device: <a href="usb_bindings.device.html" class="tsd-signature-type" data-tsd-kind="Class">Device</a></h5>
|
|
148
|
-
</li>
|
|
149
|
-
<li>
|
|
150
|
-
<h5>descriptor: <a href="../interfaces/usb_descriptors.endpointdescriptor.html" class="tsd-signature-type" data-tsd-kind="Interface">EndpointDescriptor</a></h5>
|
|
151
|
-
</li>
|
|
152
|
-
</ul>
|
|
153
|
-
<h4 class="tsd-returns-title">Returns <a href="usb_endpoint.endpoint.html" class="tsd-signature-type" data-tsd-kind="Class">Endpoint</a></h4>
|
|
154
|
-
</li>
|
|
155
|
-
</ul>
|
|
156
|
-
</section>
|
|
157
|
-
</section>
|
|
158
|
-
<section class="tsd-panel-group tsd-member-group ">
|
|
159
|
-
<h2>Properties</h2>
|
|
160
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
|
|
161
|
-
<a name="address" class="tsd-anchor"></a>
|
|
162
|
-
<h3>address</h3>
|
|
163
|
-
<div class="tsd-signature tsd-kind-icon">address<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
|
164
|
-
<aside class="tsd-sources">
|
|
165
|
-
<ul>
|
|
166
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L9">tsc/usb/endpoint.ts:9</a></li>
|
|
167
|
-
</ul>
|
|
168
|
-
</aside>
|
|
169
|
-
</section>
|
|
170
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
|
|
171
|
-
<a name="descriptor" class="tsd-anchor"></a>
|
|
172
|
-
<h3>descriptor</h3>
|
|
173
|
-
<div class="tsd-signature tsd-kind-icon">descriptor<span class="tsd-signature-symbol">:</span> <a href="../interfaces/usb_descriptors.endpointdescriptor.html" class="tsd-signature-type" data-tsd-kind="Interface">EndpointDescriptor</a></div>
|
|
174
|
-
<aside class="tsd-sources">
|
|
175
|
-
<ul>
|
|
176
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L21">tsc/usb/endpoint.ts:21</a></li>
|
|
177
|
-
</ul>
|
|
178
|
-
</aside>
|
|
179
|
-
<div class="tsd-comment tsd-typography">
|
|
180
|
-
<div class="lead">
|
|
181
|
-
<p>Object with fields from the endpoint descriptor -- see libusb documentation or USB spec.</p>
|
|
182
|
-
</div>
|
|
183
|
-
</div>
|
|
184
|
-
</section>
|
|
185
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-protected">
|
|
186
|
-
<a name="device" class="tsd-anchor"></a>
|
|
187
|
-
<h3><span class="tsd-flag ts-flagProtected">Protected</span> device</h3>
|
|
188
|
-
<div class="tsd-signature tsd-kind-icon">device<span class="tsd-signature-symbol">:</span> <a href="usb_bindings.device.html" class="tsd-signature-type" data-tsd-kind="Class">Device</a></div>
|
|
189
|
-
<aside class="tsd-sources">
|
|
190
|
-
</aside>
|
|
191
|
-
</section>
|
|
192
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
|
|
193
|
-
<a name="direction" class="tsd-anchor"></a>
|
|
194
|
-
<h3><span class="tsd-flag ts-flagAbstract">Abstract</span> direction</h3>
|
|
195
|
-
<div class="tsd-signature tsd-kind-icon">direction<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"in"</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">"out"</span></div>
|
|
196
|
-
<aside class="tsd-sources">
|
|
197
|
-
<ul>
|
|
198
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L12">tsc/usb/endpoint.ts:12</a></li>
|
|
199
|
-
</ul>
|
|
200
|
-
</aside>
|
|
201
|
-
<div class="tsd-comment tsd-typography">
|
|
202
|
-
<div class="lead">
|
|
203
|
-
<p>Endpoint direction: <code>"in"</code> or <code>"out"</code>.</p>
|
|
204
|
-
</div>
|
|
205
|
-
</div>
|
|
206
|
-
</section>
|
|
207
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
|
|
208
|
-
<a name="timeout" class="tsd-anchor"></a>
|
|
209
|
-
<h3>timeout</h3>
|
|
210
|
-
<div class="tsd-signature tsd-kind-icon">timeout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
|
|
211
|
-
<aside class="tsd-sources">
|
|
212
|
-
<ul>
|
|
213
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L18">tsc/usb/endpoint.ts:18</a></li>
|
|
214
|
-
</ul>
|
|
215
|
-
</aside>
|
|
216
|
-
<div class="tsd-comment tsd-typography">
|
|
217
|
-
<div class="lead">
|
|
218
|
-
<p>Sets the timeout in milliseconds for transfers on this endpoint. The default, <code>0</code>, is infinite timeout.</p>
|
|
219
|
-
</div>
|
|
220
|
-
</div>
|
|
221
|
-
</section>
|
|
222
|
-
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class">
|
|
223
|
-
<a name="transfertype" class="tsd-anchor"></a>
|
|
224
|
-
<h3>transfer<wbr>Type</h3>
|
|
225
|
-
<div class="tsd-signature tsd-kind-icon">transfer<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
|
226
|
-
<aside class="tsd-sources">
|
|
227
|
-
<ul>
|
|
228
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L15">tsc/usb/endpoint.ts:15</a></li>
|
|
229
|
-
</ul>
|
|
230
|
-
</aside>
|
|
231
|
-
<div class="tsd-comment tsd-typography">
|
|
232
|
-
<div class="lead">
|
|
233
|
-
<p>Endpoint type: <code>usb.LIBUSB_TRANSFER_TYPE_BULK</code>, <code>usb.LIBUSB_TRANSFER_TYPE_INTERRUPT</code>, or <code>usb.LIBUSB_TRANSFER_TYPE_ISOCHRONOUS</code>.</p>
|
|
234
|
-
</div>
|
|
235
|
-
</div>
|
|
236
|
-
</section>
|
|
237
|
-
</section>
|
|
238
|
-
<section class="tsd-panel-group tsd-member-group ">
|
|
239
|
-
<h2>Methods</h2>
|
|
240
|
-
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
241
|
-
<a name="clearhalt" class="tsd-anchor"></a>
|
|
242
|
-
<h3>clear<wbr>Halt</h3>
|
|
243
|
-
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
244
|
-
<li class="tsd-signature tsd-kind-icon">clear<wbr>Halt<span class="tsd-signature-symbol">(</span>callback<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
245
|
-
</ul>
|
|
246
|
-
<ul class="tsd-descriptions">
|
|
247
|
-
<li class="tsd-description">
|
|
248
|
-
<aside class="tsd-sources">
|
|
249
|
-
<ul>
|
|
250
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L31">tsc/usb/endpoint.ts:31</a></li>
|
|
251
|
-
</ul>
|
|
252
|
-
</aside>
|
|
253
|
-
<div class="tsd-comment tsd-typography">
|
|
254
|
-
<div class="lead">
|
|
255
|
-
<p>Clear the halt/stall condition for this endpoint.</p>
|
|
256
|
-
</div>
|
|
257
|
-
</div>
|
|
258
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
259
|
-
<ul class="tsd-parameters">
|
|
260
|
-
<li>
|
|
261
|
-
<h5>callback: <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span></h5>
|
|
262
|
-
<ul class="tsd-parameters">
|
|
263
|
-
<li class="tsd-parameter-signature">
|
|
264
|
-
<ul class="tsd-signatures tsd-kind-type-literal">
|
|
265
|
-
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
266
|
-
</ul>
|
|
267
|
-
<ul class="tsd-descriptions">
|
|
268
|
-
<li class="tsd-description">
|
|
269
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
270
|
-
<ul class="tsd-parameters">
|
|
271
|
-
<li>
|
|
272
|
-
<h5>error: <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a></h5>
|
|
273
|
-
</li>
|
|
274
|
-
</ul>
|
|
275
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
276
|
-
</li>
|
|
277
|
-
</ul>
|
|
278
|
-
</li>
|
|
279
|
-
</ul>
|
|
280
|
-
</li>
|
|
281
|
-
</ul>
|
|
282
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
283
|
-
</li>
|
|
284
|
-
</ul>
|
|
285
|
-
</section>
|
|
286
|
-
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
287
|
-
<a name="maketransfer" class="tsd-anchor"></a>
|
|
288
|
-
<h3>make<wbr>Transfer</h3>
|
|
289
|
-
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
290
|
-
<li class="tsd-signature tsd-kind-icon">make<wbr>Transfer<span class="tsd-signature-symbol">(</span>timeout<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, callback<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a>, buffer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span>, actualLength<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="usb_bindings.transfer.html" class="tsd-signature-type" data-tsd-kind="Class">Transfer</a></li>
|
|
291
|
-
</ul>
|
|
292
|
-
<ul class="tsd-descriptions">
|
|
293
|
-
<li class="tsd-description">
|
|
294
|
-
<aside class="tsd-sources">
|
|
295
|
-
<ul>
|
|
296
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/37d54e6/tsc/usb/endpoint.ts#L44">tsc/usb/endpoint.ts:44</a></li>
|
|
297
|
-
</ul>
|
|
298
|
-
</aside>
|
|
299
|
-
<div class="tsd-comment tsd-typography">
|
|
300
|
-
<div class="lead">
|
|
301
|
-
<p>Create a new <code>Transfer</code> object for this endpoint.</p>
|
|
302
|
-
</div>
|
|
303
|
-
<p>The passed callback will be called when the transfer is submitted and finishes. Its arguments are the error (if any), the submitted buffer, and the amount of data actually written (for
|
|
304
|
-
OUT transfers) or read (for IN transfers).</p>
|
|
305
|
-
</div>
|
|
306
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
307
|
-
<ul class="tsd-parameters">
|
|
308
|
-
<li>
|
|
309
|
-
<h5>timeout: <span class="tsd-signature-type">number</span></h5>
|
|
310
|
-
<div class="tsd-comment tsd-typography">
|
|
311
|
-
<p>Timeout for the transfer (0 means unlimited).</p>
|
|
312
|
-
</div>
|
|
313
|
-
</li>
|
|
314
|
-
<li>
|
|
315
|
-
<h5>callback: <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a>, buffer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span>, actualLength<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span></h5>
|
|
316
|
-
<div class="tsd-comment tsd-typography">
|
|
317
|
-
<p>Transfer completion callback.</p>
|
|
318
|
-
</div>
|
|
319
|
-
<ul class="tsd-parameters">
|
|
320
|
-
<li class="tsd-parameter-signature">
|
|
321
|
-
<ul class="tsd-signatures tsd-kind-type-literal">
|
|
322
|
-
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a>, buffer<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span>, actualLength<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
323
|
-
</ul>
|
|
324
|
-
<ul class="tsd-descriptions">
|
|
325
|
-
<li class="tsd-description">
|
|
326
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
327
|
-
<ul class="tsd-parameters">
|
|
328
|
-
<li>
|
|
329
|
-
<h5>error: <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><a href="usb_bindings.libusbexception.html" class="tsd-signature-type" data-tsd-kind="Class">LibUSBException</a></h5>
|
|
330
|
-
</li>
|
|
331
|
-
<li>
|
|
332
|
-
<h5>buffer: <span class="tsd-signature-type">Buffer</span></h5>
|
|
333
|
-
</li>
|
|
334
|
-
<li>
|
|
335
|
-
<h5>actualLength: <span class="tsd-signature-type">number</span></h5>
|
|
336
|
-
</li>
|
|
337
|
-
</ul>
|
|
338
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
339
|
-
</li>
|
|
340
|
-
</ul>
|
|
341
|
-
</li>
|
|
342
|
-
</ul>
|
|
343
|
-
</li>
|
|
344
|
-
</ul>
|
|
345
|
-
<h4 class="tsd-returns-title">Returns <a href="usb_bindings.transfer.html" class="tsd-signature-type" data-tsd-kind="Class">Transfer</a></h4>
|
|
346
|
-
</li>
|
|
347
|
-
</ul>
|
|
348
|
-
</section>
|
|
349
|
-
</section>
|
|
350
|
-
</div>
|
|
351
|
-
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
352
|
-
<nav class="tsd-navigation primary">
|
|
353
|
-
<ul>
|
|
354
|
-
<li class=" ">
|
|
355
|
-
<a href="../modules.html">Exports</a>
|
|
356
|
-
</li>
|
|
357
|
-
<li class=" tsd-kind-module">
|
|
358
|
-
<a href="../modules/index.html">index</a>
|
|
359
|
-
</li>
|
|
360
|
-
<li class=" tsd-kind-module">
|
|
361
|
-
<a href="../modules/usb.html">usb</a>
|
|
362
|
-
</li>
|
|
363
|
-
<li class=" tsd-kind-module">
|
|
364
|
-
<a href="../modules/usb_bindings.html">usb/bindings</a>
|
|
365
|
-
</li>
|
|
366
|
-
<li class=" tsd-kind-module">
|
|
367
|
-
<a href="../modules/usb_capability.html">usb/capability</a>
|
|
368
|
-
</li>
|
|
369
|
-
<li class=" tsd-kind-module">
|
|
370
|
-
<a href="../modules/usb_descriptors.html">usb/descriptors</a>
|
|
371
|
-
</li>
|
|
372
|
-
<li class=" tsd-kind-module">
|
|
373
|
-
<a href="../modules/usb_device.html">usb/device</a>
|
|
374
|
-
</li>
|
|
375
|
-
<li class="current tsd-kind-module">
|
|
376
|
-
<a href="../modules/usb_endpoint.html">usb/endpoint</a>
|
|
377
|
-
</li>
|
|
378
|
-
<li class=" tsd-kind-module">
|
|
379
|
-
<a href="../modules/usb_interface.html">usb/interface</a>
|
|
380
|
-
</li>
|
|
381
|
-
<li class=" tsd-kind-module">
|
|
382
|
-
<a href="../modules/webusb.html">webusb</a>
|
|
383
|
-
</li>
|
|
384
|
-
<li class=" tsd-kind-module">
|
|
385
|
-
<a href="../modules/webusb_mutex.html">webusb/mutex</a>
|
|
386
|
-
</li>
|
|
387
|
-
<li class=" tsd-kind-module">
|
|
388
|
-
<a href="../modules/webusb_typed_event_target.html">webusb/typed-<wbr>event-<wbr>target</a>
|
|
389
|
-
</li>
|
|
390
|
-
<li class=" tsd-kind-module">
|
|
391
|
-
<a href="../modules/webusb_webusb_device.html">webusb/webusb-<wbr>device</a>
|
|
392
|
-
</li>
|
|
393
|
-
</ul>
|
|
394
|
-
</nav>
|
|
395
|
-
<nav class="tsd-navigation secondary menu-sticky">
|
|
396
|
-
<ul class="before-current">
|
|
397
|
-
</ul>
|
|
398
|
-
<ul class="current">
|
|
399
|
-
<li class="current tsd-kind-class tsd-parent-kind-module">
|
|
400
|
-
<a href="usb_endpoint.endpoint.html" class="tsd-kind-icon">Endpoint</a>
|
|
401
|
-
<ul>
|
|
402
|
-
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
|
|
403
|
-
<a href="usb_endpoint.endpoint.html#constructor" class="tsd-kind-icon">constructor</a>
|
|
404
|
-
</li>
|
|
405
|
-
<li class=" tsd-kind-property tsd-parent-kind-class">
|
|
406
|
-
<a href="usb_endpoint.endpoint.html#address" class="tsd-kind-icon">address</a>
|
|
407
|
-
</li>
|
|
408
|
-
<li class=" tsd-kind-property tsd-parent-kind-class">
|
|
409
|
-
<a href="usb_endpoint.endpoint.html#descriptor" class="tsd-kind-icon">descriptor</a>
|
|
410
|
-
</li>
|
|
411
|
-
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-protected">
|
|
412
|
-
<a href="usb_endpoint.endpoint.html#device" class="tsd-kind-icon">device</a>
|
|
413
|
-
</li>
|
|
414
|
-
<li class=" tsd-kind-property tsd-parent-kind-class">
|
|
415
|
-
<a href="usb_endpoint.endpoint.html#direction" class="tsd-kind-icon">direction</a>
|
|
416
|
-
</li>
|
|
417
|
-
<li class=" tsd-kind-property tsd-parent-kind-class">
|
|
418
|
-
<a href="usb_endpoint.endpoint.html#timeout" class="tsd-kind-icon">timeout</a>
|
|
419
|
-
</li>
|
|
420
|
-
<li class=" tsd-kind-property tsd-parent-kind-class">
|
|
421
|
-
<a href="usb_endpoint.endpoint.html#transfertype" class="tsd-kind-icon">transfer<wbr>Type</a>
|
|
422
|
-
</li>
|
|
423
|
-
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
424
|
-
<a href="usb_endpoint.endpoint.html#clearhalt" class="tsd-kind-icon">clear<wbr>Halt</a>
|
|
425
|
-
</li>
|
|
426
|
-
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
427
|
-
<a href="usb_endpoint.endpoint.html#maketransfer" class="tsd-kind-icon">make<wbr>Transfer</a>
|
|
428
|
-
</li>
|
|
429
|
-
</ul>
|
|
430
|
-
</li>
|
|
431
|
-
</ul>
|
|
432
|
-
<ul class="after-current">
|
|
433
|
-
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
434
|
-
<a href="usb_endpoint.inendpoint.html" class="tsd-kind-icon">In<wbr>Endpoint</a>
|
|
435
|
-
</li>
|
|
436
|
-
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
437
|
-
<a href="usb_endpoint.outendpoint.html" class="tsd-kind-icon">Out<wbr>Endpoint</a>
|
|
438
|
-
</li>
|
|
439
|
-
</ul>
|
|
440
|
-
</nav>
|
|
441
|
-
</div>
|
|
442
|
-
</div>
|
|
443
|
-
</div>
|
|
444
|
-
<footer>
|
|
445
|
-
<div class="container">
|
|
446
|
-
<h2>Legend</h2>
|
|
447
|
-
<div class="tsd-legend-group">
|
|
448
|
-
<ul class="tsd-legend">
|
|
449
|
-
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
|
450
|
-
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
|
451
|
-
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
|
452
|
-
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
|
453
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
|
454
|
-
</ul>
|
|
455
|
-
<ul class="tsd-legend">
|
|
456
|
-
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
|
457
|
-
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
|
458
|
-
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
|
459
|
-
</ul>
|
|
460
|
-
<ul class="tsd-legend">
|
|
461
|
-
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
|
462
|
-
</ul>
|
|
463
|
-
<ul class="tsd-legend">
|
|
464
|
-
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
|
465
|
-
</ul>
|
|
466
|
-
</div>
|
|
467
|
-
</div>
|
|
468
|
-
</footer>
|
|
469
|
-
<div class="overlay"></div>
|
|
470
|
-
<script src="../assets/js/main.js"></script>
|
|
471
|
-
</body>
|
|
472
|
-
</html>
|