mirror of
https://github.com/Noltari/pico-uart-bridge.git
synced 2025-05-14 08:12:20 +00:00
Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
|
9d0df3277d | ||
|
c8a4bc513f | ||
|
b74af3b0d8 | ||
|
2f05798e36 | ||
|
2e3f10f756 |
3 changed files with 7 additions and 7 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -1,13 +1,15 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
CI:
|
CI:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: 'Check out code'
|
- name: 'Check out code'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: 'Install dependencies'
|
- name: 'Install dependencies'
|
||||||
run: |
|
run: |
|
||||||
|
@ -28,7 +30,7 @@ jobs:
|
||||||
make -C build
|
make -C build
|
||||||
|
|
||||||
- name: 'Upload binary'
|
- name: 'Upload binary'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
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 2e6142b15b8a75c1227dd3edbe839193b2bf9041
|
Subproject commit 6a7db34ff63345a7badec79ebea3aaef1712f374
|
|
@ -301,8 +301,6 @@ 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