-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add USB Gadget Device support (#567)
* Initial attempt to include USB Gadget Mode as a configuration option. Note: Also requires a move to the latest release of circle. * Set "official" (as allocated from pid.codes) USB vendor and device ID for MiniDexed
- Loading branch information
1 parent
c5c4e13
commit 258a456
Showing
10 changed files
with
67 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,2 @@ | ||
USB_VID=0x1209 | ||
USB_DID=0xF043 |
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
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 |
---|---|---|
@@ -1,15 +1,24 @@ | ||
#!/bin/bash | ||
set -ex | ||
# | ||
# Update top-level modules as a baseline | ||
git submodule update --init --recursive | ||
# | ||
# Use fixed master branch of circle-stdlib then re-update | ||
cd circle-stdlib/ | ||
git checkout e318f89 # Needed to support Circle develop? | ||
git checkout 695ab4a | ||
git submodule update --init --recursive | ||
cd - | ||
# | ||
# Optional update submodules explicitly | ||
cd circle-stdlib/libs/circle | ||
git checkout ec09d7e # develop | ||
git checkout fe09c4b | ||
cd - | ||
cd circle-stdlib/libs/circle-newlib | ||
git checkout 48bf91d # needed for circle ec09d7e | ||
#git checkout develop | ||
cd - | ||
# | ||
# Use fixed master branch of Synth_Dexed | ||
cd Synth_Dexed/ | ||
git checkout c9f5274 | ||
cd - |
258a456
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dwhinham/mt32-pi#106 see here