@@ -8,7 +8,7 @@ HIDAPI was moved to [libusb/hidapi](https://github.com/libusb/hidapi) on June 4t
8
8
9
9
HIDAPI is a multi-platform library which allows an application to interface
10
10
with USB and Bluetooth HID-Class devices on Windows, Linux, FreeBSD, and Mac
11
- OS X. HIDAPI can be either built as a shared library (.so or .dll) or
11
+ OS X. HIDAPI can be either built as a shared library (` .so ` or ` .dll ` ) or
12
12
can be embedded directly into a target application by adding a single source
13
13
file (per platform) and a single header.
14
14
@@ -22,7 +22,7 @@ HIDAPI has five back-ends:
22
22
On Linux, either the hidraw or the libusb back-end can be used. There are
23
23
tradeoffs, and the functionality supported is slightly different.
24
24
25
- Linux/hidraw (linux/hid.c):
25
+ Linux/hidraw (` linux/hid.c ` ):
26
26
This back-end uses the hidraw interface in the Linux kernel. While this
27
27
back-end will support both USB and Bluetooth, it has some limitations on
28
28
kernels prior to 2.6.39, including the inability to send or receive feature
@@ -31,7 +31,7 @@ hidraw nodes associated with them. Keyboards, mice, and some other devices
31
31
which are blacklisted from having hidraw nodes will not work. Fortunately,
32
32
for nearly all the uses of hidraw, this is not a problem.
33
33
34
- Linux/FreeBSD/libusb (libusb/hid.c):
34
+ Linux/FreeBSD/libusb (` libusb/hid.c ` ):
35
35
This back-end uses libusb-1.0 to communicate directly to a USB device. This
36
36
back-end will of course not work with Bluetooth devices.
37
37
@@ -232,7 +232,7 @@ make install # as root, or using sudo
232
232
If you downloaded a source package (ie: if you did not run git clone), you
233
233
can skip the ` ./bootstrap ` step.
234
234
235
- ./configure can take several arguments which control the build. The two most
235
+ ` ./configure ` can take several arguments which control the build. The two most
236
236
likely to be used are:
237
237
``` sh
238
238
--enable-testgui
@@ -268,10 +268,10 @@ make -f Makefile-manual
268
268
269
269
### Building on Windows:
270
270
271
- To build the HIDAPI DLL on Windows using Visual Studio, build the .sln file
271
+ To build the HIDAPI DLL on Windows using Visual Studio, build the ` .sln ` file
272
272
in the windows/ directory.
273
273
274
- To build the Test GUI on windows using Visual Studio, build the .sln file in
274
+ To build the Test GUI on windows using Visual Studio, build the ` .sln ` file in
275
275
the testgui/ directory.
276
276
277
277
To build HIDAPI using MinGW or Cygwin using Autotools, use the instructions
@@ -347,8 +347,9 @@ PKG_CONFIG_SYSROOT_DIR=$STAGING \
347
347
./configure --host=$HOST --prefix=$STAGING
348
348
```
349
349
350
- Signal 11 Software - 2010-04-11
351
- 2010-07-28
352
- 2011-09-10
353
- 2012-05-01
354
- 2012-07-03
350
+ Signal 11 Software \
351
+ 2010-04-11 \
352
+ 2010-07-28 \
353
+ 2011-09-10 \
354
+ 2012-05-01 \
355
+ 2012-07-03
0 commit comments