diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9285710e..967207bb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -126,9 +126,10 @@ jobs: - path: ti/ti-ek-tm4c1294xl-http-server - path: ti/ek-tm4c1294xl-baremetal - path: ti/ek-tm4c1294xl-freertos-mip + - path: rp2040/pico-rmii + - path: rp2040/pico-rndis-dashboard - path: rp2040/pico-w - path: rp2040/pico-w5500 - - path: rp2040/pico-rmii name: ${{ matrix.example.path }} steps: - uses: actions/checkout@v3 diff --git a/examples/rp2040/pico-rndis-dashboard/CMakeLists.txt b/examples/rp2040/pico-rndis-dashboard/CMakeLists.txt index 46b01ca4..49d6cfd1 100644 --- a/examples/rp2040/pico-rndis-dashboard/CMakeLists.txt +++ b/examples/rp2040/pico-rndis-dashboard/CMakeLists.txt @@ -28,13 +28,13 @@ add_executable(firmware net.c packed_fs.c usb_descriptors.c - /usr/share/pico_sdk/lib/tinyusb/lib/networking/rndis_reports.c + pico-sdk/lib/tinyusb/lib/networking/rndis_reports.c ) # Make sure TinyUSB can find tusb_config.h and workaround SDK include paths target_include_directories(firmware PUBLIC ${CMAKE_CURRENT_LIST_DIR} - /usr/share/pico_sdk/lib/tinyusb/lib/networking + ${CMAKE_CURRENT_LIST_DIR}/pico-sdk/lib/tinyusb/lib/networking ) # enable uart output diff --git a/examples/rp2040/pico-rndis-dashboard/README.md b/examples/rp2040/pico-rndis-dashboard/README.md index 1fd6c547..fbd493b7 100644 --- a/examples/rp2040/pico-rndis-dashboard/README.md +++ b/examples/rp2040/pico-rndis-dashboard/README.md @@ -9,7 +9,7 @@ Clone Mongoose repo, go to this example, and build it: ```sh git clone https://github.com/cesanta/mongoose -cd mongoose/examples/ro2040/pico-rndis-dashboard +cd mongoose/examples/rp2040/pico-rndis-dashboard make build ```