├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── ProjectFiles ├── CMakeLists.txt └── main.c ├── freertos ├── CMakeLists.txt └── FreeRTOSConfig.h └── pico_sdk_import.cmake /.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ProjectFiles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/ProjectFiles/CMakeLists.txt -------------------------------------------------------------------------------- /ProjectFiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/ProjectFiles/main.c -------------------------------------------------------------------------------- /freertos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/freertos/CMakeLists.txt -------------------------------------------------------------------------------- /freertos/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/freertos/FreeRTOSConfig.h -------------------------------------------------------------------------------- /pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnEmbeddedSystems/rp2040-freertos-project/HEAD/pico_sdk_import.cmake --------------------------------------------------------------------------------