mirror of
https://github.com/Noltari/pico-uart-bridge.git
synced 2025-05-14 08:12:20 +00:00
Compare commits
No commits in common. "master" and "v4.1" have entirely different histories.
3 changed files with 7 additions and 7 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -1,15 +1,13 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on:
|
on: [push, pull_request]
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
CI:
|
CI:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: 'Check out code'
|
- name: 'Check out code'
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: 'Install dependencies'
|
- name: 'Install dependencies'
|
||||||
run: |
|
run: |
|
||||||
|
@ -30,7 +28,7 @@ jobs:
|
||||||
make -C build
|
make -C build
|
||||||
|
|
||||||
- name: 'Upload binary'
|
- name: 'Upload binary'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: pico-uart-bridge.uf2
|
name: pico-uart-bridge.uf2
|
||||||
path: build/uart_bridge.uf2
|
path: build/uart_bridge.uf2
|
||||||
|
|
2
pico-sdk
2
pico-sdk
|
@ -1 +1 @@
|
||||||
Subproject commit 6a7db34ff63345a7badec79ebea3aaef1712f374
|
Subproject commit 2e6142b15b8a75c1227dd3edbe839193b2bf9041
|
|
@ -301,6 +301,8 @@ int main(void)
|
||||||
{
|
{
|
||||||
int itf;
|
int itf;
|
||||||
|
|
||||||
|
set_sys_clock_khz(250000, false);
|
||||||
|
|
||||||
usbd_serial_init();
|
usbd_serial_init();
|
||||||
|
|
||||||
for (itf = 0; itf < CFG_TUD_CDC; itf++)
|
for (itf = 0; itf < CFG_TUD_CDC; itf++)
|
||||||
|
|
Loading…
Add table
Reference in a new issue