forked from OpenStickCommunity/GP2040-CE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating pico build version (OpenStickCommunity#1179)
* Updating pico build version * Updating Pio_USB * Enabling Pico VSCode Extension. * Updating Pio_USB * More updates --------- Co-authored-by: Fortinbra <[email protected]> Co-authored-by: Luke A <[email protected]>
- Loading branch information
1 parent
1d53757
commit 9e5c338
Showing
6 changed files
with
44 additions
and
6 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ jobs: | |
fetch-tags: true | ||
|
||
- name: Setup SDK pipeline | ||
uses: Fortinbra/RaspberryPiPicoBuild@v3 | ||
uses: Fortinbra/RaspberryPiPicoBuild@v4 | ||
|
||
- name: Download a Build Artifact | ||
uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -18,3 +18,4 @@ env.ini | |
.devcontainer | ||
*Dockerfile | ||
*docker-compose.yml | ||
lib/NeoPico/src/generated/ws2812.pio.h |
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
Submodule pico_pio_usb
updated
20 files
+25 −29 | .github/workflows/build.yml | |
+1 −4 | .github/workflows/build_arduino.yml | |
+2 −3 | README.md | |
+1 −0 | examples/CMakeLists.txt | |
+1 −0 | examples/capture_hid_report/capture_hid_report.c | |
+1 −0 | examples/host_hid_to_device_cdc/host_hid_to_device_cdc.c | |
+15 −0 | examples/test_ll/CMakeLists.txt | |
+200 −0 | examples/test_ll/test_ll.c | |
+1 −0 | examples/usb_device/usb_device.c | |
+1 −1 | library.properties | |
+148 −37 | src/pio_usb.c | |
+3 −3 | src/pio_usb_configuration.h | |
+115 −43 | src/pio_usb_device.c | |
+48 −28 | src/pio_usb_host.c | |
+17 −3 | src/pio_usb_ll.h | |
+4 −1 | src/usb_definitions.h | |
+24 −31 | src/usb_rx.pio | |
+21 −29 | src/usb_rx.pio.h | |
+49 −169 | src/usb_tx.pio | |
+41 −122 | src/usb_tx.pio.h |
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