https://github.com/libmcu/template-stm32
https://github.com/libmcu/template-stm32
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/libmcu/template-stm32
- Owner: libmcu
- License: mit
- Created: 2023-10-12T07:52:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T04:47:19.000Z (almost 2 years ago)
- Last Synced: 2024-07-08T05:53:39.940Z (almost 2 years ago)
- Language: C
- Size: 114 KB
- Stars: 0
- 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
│ └── STM32CubeG4
├── include
├── ports
│ ├── freertos
│ └── stm32
├── src
└── tests
├── fakes
├── mocks
├── runners
├── src
└── stubs
```
| Directory | Desc. |
| --------- | ------------------------------------------------------------------- |
| docs | Documentation |
| external | Third-party libraries or SDK. e.g. STM32 SDK |
| 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 |