├── .github └── workflows │ └── sdk-ci.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docs └── vscode_manual_setup.md ├── freertos_test_project ├── CMakeLists.txt ├── config │ └── FreeRTOSConfig.h └── main.cpp ├── install_gcc.sh ├── test_poject ├── CMakeLists.txt └── main.c └── test_sdk.sh /.github/workflows/sdk-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/.github/workflows/sdk-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/README.md -------------------------------------------------------------------------------- /docs/vscode_manual_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/docs/vscode_manual_setup.md -------------------------------------------------------------------------------- /freertos_test_project/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/freertos_test_project/CMakeLists.txt -------------------------------------------------------------------------------- /freertos_test_project/config/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/freertos_test_project/config/FreeRTOSConfig.h -------------------------------------------------------------------------------- /freertos_test_project/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/freertos_test_project/main.cpp -------------------------------------------------------------------------------- /install_gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/install_gcc.sh -------------------------------------------------------------------------------- /test_poject/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/test_poject/CMakeLists.txt -------------------------------------------------------------------------------- /test_poject/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/test_poject/main.c -------------------------------------------------------------------------------- /test_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukstep/raspberry-pi-pico-docker-sdk/HEAD/test_sdk.sh --------------------------------------------------------------------------------