summaryrefslogtreecommitdiffstats
path: root/tinyusb/docs/contributing/structure.rst
blob: e8c658850d0d0dd6a7002575bf7221e12601416d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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