-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
75 lines (75 loc) · 4.67 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>libusb</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="header">
<p>
<a href="https://libusb.info"><img style="vertical-align:middle" src="images/logo-160.png" alt="libusb"/></a> A cross-platform user library to access USB devices
<br>
</p>
</div>
<div class="menu">
<ul>
<li><a href="https://github.com/libusb/libusb" id="current">About</a>
</li>
<li><a href="https://github.com/libusb/libusb/releases">Downloads</a>
<ul>
<li><a href="https://github.com/libusb/libusb/releases/download/v1.0.27/libusb-1.0.27.tar.bz2">Latest Source (tarball)</a></li>
<li><a href="https://github.com/libusb/libusb/releases/download/v1.0.27/libusb-1.0.27.7z">Latest Windows Binaries</a></li>
</ul>
</li>
<li><a href="https://libusb.sourceforge.io/api-1.0/">Documentation</a>
<ul>
<li><a href="https://libusb.sourceforge.io/api-1.0/">libusb API (v1.0)</a></li>
<li><a href="https://github.com/libusb/libusb/wiki">Wiki</a></li>
<li><a href="https://github.com/libusb/libusb/wiki/FAQ">FAQ</a></li>
</ul>
</li>
<li><a href="https://github.com/libusb/libusb/issues">Support</a>
<ul>
<li><a href="https://lists.sourceforge.net/lists/listinfo/libusb-devel">Post to Mailing List</a></li>
<li><a href="https://sourceforge.net/p/libusb/mailman/search/?mail_list=libusb-devel">Search Mailing List</a></li>
<li><a href="https://sourceforge.net/p/libusb/mailman/libusb-devel/">Mailing List Archives</a></li>
<li><a href="https://github.com/libusb/libusb/issues/new">Report New Issue</a></li>
<li><a href="https://github.com/libusb/libusb/issues?sort=created&state=open">Search Existing Issues</a></li>
</ul>
</li>
<li><a href="https://github.com/libusb/libusb">Development</a>
<ul>
<li><a href="https://github.com/libusb/libusb/milestones?direction=asc&sort=due_date&state=open">Roadmap</a></li>
<li><a href="https://github.com/libusb/libusb/commits/master">Git Log</a></li>
<li><a href="https://github.com/libusb/libusb/wiki#wiki-Accessing_the_Source">Git Access</a></li>
<!-- <li><a href="#">Sending Patches</a></li> -->
</ul>
</li>
</ul>
</div>
<div class="main">
<h2>Overview</h2>
<p><b>libusb</b> is a C library that provides generic access to USB devices. It is intended to be used by developers to facilitate the production of applications that communicate with USB hardware.</p>
<p>It is <b>portable</b>: Using a single cross-platform API, it provides access to USB devices on Linux, macOS, Windows, etc.</p>
<p>It is <b>user-mode</b>: No special privilege or elevation is required for the application to communicate with a device.</p>
<p>It is <b>version-agnostic</b>: All versions of the USB protocol, from 1.0 to 3.1 (latest), are supported.</p>
<h2>What platforms are supported?</h2>
<p>Linux, macOS, Windows (Vista and newer), Android, OpenBSD/NetBSD, Haiku, Solaris.</p>
<h2>Sounds good! How do I get started?</h2>
<p>If you are using Linux, chances are your distribution already includes libusb, so you probably just need to reference the libusb header in your source.</p>
<p>For other platforms, or if you want to use the very latest, you are encouraged to recompile from source. Please check the Downloads menu.</p>
<p>If you prefer, you can also access the source directly from <a href="https://github.com/libusb/libusb">github</a>.</p>
<p>Once you have secured your access to the library and its header, please check the <a href="https://libusb.sourceforge.io/api-1.0/">libusb API</a> or the <a href="https://github.com/libusb/libusb/tree/master/examples">libusb samples</a>.
<h2>What happened to the old site?</h2>
<p>The old site (.org) is now obsolete, please use <b><a href="https://libusb.info">libusb.info</a></b>.<br/>
All of the current libusb development team has moved to <b><a href="https://libusb.info">libusb.info</a></b>.</p>
<br/>
<p><b>For additional information, please consult the <a href="https://github.com/libusb/libusb/wiki/FAQ">FAQ</a> or the <a href="https://github.com/libusb/libusb/wiki">Wiki</a>.</b></p>
</div>
<div class="footer">
Copyright © 2012-2024 libusb<br/>
CSS menu by <a href="http://www.cssmenumaker.com/">CSS menumaker</a>
</div>
</body>
</html>