summaryrefslogtreecommitdiff
path: root/docs/getting_started.md
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-03-02 10:18:44 +0700
committerhathach <[email protected]>2021-03-02 10:18:44 +0700
commit7afaae7ffc71094363a54dc92ab7982d0cb84d7b (patch)
tree6b86f354e7a5919e43492d8efb248ca74f7be4ee /docs/getting_started.md
parentc34b6b2324809276664070a8c52bfa71ceaf9d06 (diff)
remove submodule lib/CMSIS_5
Diffstat (limited to 'docs/getting_started.md')
-rw-r--r--docs/getting_started.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/getting_started.md b/docs/getting_started.md
index dfdf02562..870491fe2 100644
--- a/docs/getting_started.md
+++ b/docs/getting_started.md
@@ -39,13 +39,13 @@ $ git clone https://github.com/hathach/tinyusb tinyusb
$ cd tinyusb
```
-TinyUSB examples includes external repos aka submodules to provide low-level MCU peripheral's driver as well as external libraries such as FreeRTOS to compile with. Therefore we will firstly fetch those mcu driver repo by running this command in the top folder repo
+Some TinyUSB examples also requires external submodule libraries in `/lib` such as FreeRTOS, Lightweight IP to build. Run following command to fetch them
```
-$ git submodule update --init --recursive
+$ git submodule update --init lib
```
-It will takes a bit of time due to the number of supported MCUs, luckily we only need to do this once. Or if you only want to test with a specific mcu, you could only fetch its driver submodule.
+In addition, MCU driver submodule is also needed to provide low-level MCU peripheral's driver. Luckily, it will be fetched if needed when you run the `make` to build your board.
### Build