smittytone / RP2040-FreeRTOS

Raspberry Pi RP2040 FreeRTOS baseline development project
https://blog.smittytone.net/2022/02/24/how-to-use-freertos-with-the-raspberry-pi-pico/
MIT License
107 stars 40 forks source link

A lot of extraneous submodules cloned #6

Closed AXKuhta closed 9 months ago

AXKuhta commented 10 months ago

Hello! I just wanted to note that when the repository is cloned as described in the README a lot of extraneous code is downloaded as part of tinyusb; final folder size ends up being 3.7 GB:

Screenshot from 2023-10-18 22-48-46

To prevent this, submodules need to be updated selectively:

git clone https://github.com/smittytone/RP2040-FreeRTOS
cd RP2040-FreeRTOS/
git submodule update --init
cd pico-sdk/
git submodule update --init
cd ..

This results in a much more reasonable ~640 MB directory.

Would you mind updating the README with these commands?

smittytone commented 10 months ago

I'll take a look.