https://github.com/libmcu/template-esp32
https://github.com/libmcu/template-esp32
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/libmcu/template-esp32
- Owner: libmcu
- License: mit
- Created: 2023-09-03T03:43:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T22:52:29.000Z (almost 2 years ago)
- Last Synced: 2024-07-28T22:43:16.454Z (almost 2 years ago)
- Language: CMake
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Directory Structure
```
.
├── docs
├── external
│ └── libmcu
├── include
├── ports
│ └── esp-idf
├── src
└── tests
├── fakes
├── mocks
├── runners
├── src
└── stubs
```
| Directory | Desc. |
| --------- | ------------------------------------------------------------------- |
| docs | Documentation |
| external | Third-party libraries or SDK. e.g. ESP-IDF |
| include | The project header files |
| ports | Wrappers or glue code to bring third-party drivers into the project |
| src | Application code. No hardware or platform-specific code |
| tests | Test codes |