-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
res_usbradio: Add ability to specify allowed vid:pid (#428)
This updates res_usbradio to allow users to specify USB device descriptor(s) that can be used for interface devices. There are compatible chips that are not supported in the code. This will allow users to easily add the compatible chip(s). This adds res_usbradio.conf for configuration. A sample configuration file was also added. This closes #359.
- Loading branch information
Showing
3 changed files
with
180 additions
and
18 deletions.
There are no files selected for viewing
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,7 @@ | ||
[general] | ||
;usb_devices = 1209:7388 ;comma delimited list of usb | ||
;descriptors to allow. | ||
;format vvvv:pppp in hexadecimal | ||
;vvvv=vendor id, pppp=product id | ||
; | ||
;1209:7388 = AIOC (all in one cable) |
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,7 @@ | ||
[general] | ||
;usb_devices = 1209:7388 ;comma delimited list of usb | ||
;descriptors to allow. | ||
;format vvvv:pppp in hexadecimal | ||
;vvvv=vendor id, pppp=product id | ||
; | ||
;1209:7388 = AIOC (all in one cable) |
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