From 04cfc510d093d4b8f8a711a6985cf4d1430e1ab1 Mon Sep 17 00:00:00 2001 From: Alex Alashkin Date: Fri, 7 Oct 2022 09:08:59 +0300 Subject: [PATCH] Add Pico-W example --- .github/workflows/test.yml | 4 +++- examples/raspberry/raspberry-pi-pico-w/Makefile | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 examples/raspberry/raspberry-pi-pico-w/Makefile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f99f3d4f..03779b8f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -155,6 +155,8 @@ jobs: path: infineon/infineon-xmc4700_4800-lwip-rtx-rtos - name: ti path: ti/ti-ek-tm4c1294xl-http-server + - name: pico-w + path: raspberry/raspberry-pi-pico-w name: ${{ matrix.example.name }} steps: - uses: actions/checkout@v3 @@ -173,7 +175,7 @@ jobs: - name: nucleo_f746zg-zephyr-mqtt-aws-client path: zephyr/mqtt-aws-client - name: nucleo_f746zg-zephyr-websocket-server - path: zephyr/websocket-server + path: zephyr/websocket-server name: ${{ matrix.zephyrexample.name }} steps: - uses: actions/checkout@v3 diff --git a/examples/raspberry/raspberry-pi-pico-w/Makefile b/examples/raspberry/raspberry-pi-pico-w/Makefile new file mode 100644 index 00000000..7161ebd0 --- /dev/null +++ b/examples/raspberry/raspberry-pi-pico-w/Makefile @@ -0,0 +1,9 @@ +NAME = raspberry-pi-pico-w + +build: + git clone --depth 1 https://github.com/mongoose-examples/$(NAME) + cp ./../../../mongoose.[ch] $(NAME) + make -C $(NAME) build + +clean: + rm -rf $(NAME)