diff options
| author | Ha Thach <[email protected]> | 2021-08-04 22:20:22 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-04 22:20:22 +0700 |
| commit | 623a775f7839af6a86f05c784c6a2c63121a9bdd (patch) | |
| tree | 05058e0062e70ea4cb8a80b3200c537041ec18ed /docs/contributing/structure.rst | |
| parent | af8e5a90f4244bfe1174724b86bc4b73599b932c (diff) | |
| parent | 6805c9d7349ed85c48714fc3285bb6f88bcd9f97 (diff) | |
Merge pull request #983 from perigoso/docs
Docs
Diffstat (limited to 'docs/contributing/structure.rst')
| -rw-r--r-- | docs/contributing/structure.rst | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/docs/contributing/structure.rst b/docs/contributing/structure.rst new file mode 100644 index 000000000..e8c658850 --- /dev/null +++ b/docs/contributing/structure.rst @@ -0,0 +1,59 @@ +********* +Structure +********* + +Tree +==== + +:: + + . + ├── docs + ├── examples + ├── hw + │ ├── bsp + │ └── mcu + ├── lib + ├── src + ├── test + └── tools + +docs +---- + +Documentation + +examples +-------- + +Sample with Makefile build support + +hw/bsp +------ + +Supported boards source files + +hw/mcu +------ + +Low level mcu core & peripheral drivers + +lib +--- + +Sources from 3rd party such as freeRTOS, fatfs ... + +src +--- + +All sources files for TinyUSB stack itself. + +test +---- + +Unit tests for the stack + +tools +----- + +Files used internally |
