Skip to content

Commit 04b32c4

Browse files
committed
Limited support for CM108/CM119 GPIO support on Windows.
1 parent a1afcbb commit 04b32c4

8 files changed

+2333
-0
lines changed

external/hidapi/CMakeLists.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
set(HIDAPI_LIBRARIES "" CACHE INTERNAL "")
2+
3+
if(WIN32 OR CYGWIN) # windows
4+
5+
set(HIDAPI_LIBRARIES hidapi CACHE INTERNAL "hidapi")
6+
7+
list(APPEND hidapi_SOURCES
8+
# Functions for accessing HID devices on Windows.
9+
# These were copied from https://github.com/libusb/hidapi
10+
${CUSTOM_HIDAPI_DIR}/hid.c
11+
)
12+
13+
add_library(hidapi STATIC
14+
${hidapi_SOURCES}
15+
)
16+
17+
set_target_properties(hidapi
18+
PROPERTIES COMPILE_FLAGS "-Dbool=int -Dtrue=1 -Dfalse=0 -DUSE_HIDAPI_STATIC"
19+
)
20+
21+
endif()

external/hidapi/LICENSE-bsd.txt

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Copyright (c) 2010, Alan Ott, Signal 11 Software
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice,
8+
this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
* Neither the name of Signal 11 Software nor the names of its
13+
contributors may be used to endorse or promote products derived from
14+
this software without specific prior written permission.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26+
POSSIBILITY OF SUCH DAMAGE.

external/hidapi/LICENSE-gpl3.txt

+674
Large diffs are not rendered by default.

external/hidapi/LICENSE-orig.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
HIDAPI - Multi-Platform library for
2+
communication with HID devices.
3+
4+
Copyright 2009, Alan Ott, Signal 11 Software.
5+
All Rights Reserved.
6+
7+
This software may be used by anyone for any reason so
8+
long as the copyright notice in the source files
9+
remains intact.

external/hidapi/LICENSE.txt

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
HIDAPI can be used under one of three licenses.
2+
3+
1. The GNU General Public License, version 3.0, in LICENSE-gpl3.txt
4+
2. A BSD-Style License, in LICENSE-bsd.txt.
5+
3. The more liberal original HIDAPI license. LICENSE-orig.txt
6+
7+
The license chosen is at the discretion of the user of HIDAPI. For example:
8+
1. An author of GPL software would likely use HIDAPI under the terms of the
9+
GPL.
10+
11+
2. An author of commercial closed-source software would likely use HIDAPI
12+
under the terms of the BSD-style license or the original HIDAPI license.
13+

external/hidapi/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is from https://github.com/libusb/hidapi

0 commit comments

Comments
 (0)