-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c6cc89
commit 709d57e
Showing
8 changed files
with
102 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<!-- 0x0403 FTDI --> | ||
<usb-device vendor-id="1027" product-id="24577" /> <!-- 0x6001: FT232R --> | ||
<usb-device vendor-id="1027" product-id="24592" /> <!-- 0x6010: FT2232H --> | ||
<usb-device vendor-id="1027" product-id="24593" /> <!-- 0x6011: FT4232H --> | ||
<usb-device vendor-id="1027" product-id="24596" /> <!-- 0x6014: FT232H --> | ||
<usb-device vendor-id="1027" product-id="24597" /> <!-- 0x6015: FT231X --> | ||
|
||
<!-- 0x10C4 / 0xEAxx: Silabs CP210x --> | ||
<usb-device vendor-id="4292" product-id="60000" /> <!-- 0xea60: CP2102 --> | ||
<usb-device vendor-id="4292" product-id="60016" /> <!-- 0xea70: CP2105 --> | ||
<usb-device vendor-id="4292" product-id="60017" /> <!-- 0xea71: CP2108 --> | ||
<usb-device vendor-id="4292" product-id="60032" /> <!-- 0xea80: CP2110 --> | ||
|
||
<!-- 0x067B / 0x2303: Prolific PL2303 --> | ||
<usb-device vendor-id="1659" product-id="8963" /> | ||
|
||
<!-- 0x1a86 / 0x7523: Qinheng CH340 --> | ||
<usb-device vendor-id="6790" product-id="29987" /> | ||
|
||
<!-- CDC driver --> | ||
<usb-device vendor-id="9025" /> <!-- 0x2341 / ......: Arduino --> | ||
<usb-device vendor-id="5824" product-id="1155" /> <!-- 0x16C0 / 0x0483: Teensyduino --> | ||
<usb-device vendor-id="1003" product-id="8260" /> <!-- 0x03EB / 0x2044: Atmel Lufa --> | ||
<usb-device vendor-id="7855" product-id="4" /> <!-- 0x1eaf / 0x0004: Leaflabs Maple --> | ||
<usb-device vendor-id="3368" product-id="516" /> <!-- 0x0d28 / 0x0204: ARM mbed --> | ||
<usb-device vendor-id="5446" product-id="424" /> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ allprojects { | |
repositories { | ||
google() | ||
jcenter() | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
|
||
|