https://github.com/shishir-dey/cmsis-driver-cpp
CMSIS-Driver refactored into a C++ abstract library
https://github.com/shishir-dey/cmsis-driver-cpp
arm cmsis cpp embedded-systems googletest iot library sdk stm32
Last synced: 8 months ago
JSON representation
CMSIS-Driver refactored into a C++ abstract library
- Host: GitHub
- URL: https://github.com/shishir-dey/cmsis-driver-cpp
- Owner: shishir-dey
- License: other
- Created: 2024-12-25T09:55:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-02T18:37:20.000Z (over 1 year ago)
- Last Synced: 2025-01-02T19:33:26.765Z (over 1 year ago)
- Topics: arm, cmsis, cpp, embedded-systems, googletest, iot, library, sdk, stm32
- Language: C++
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cmsis-driver-cpp
## Fetch Submodules
Before building the project, ensure all submodules are initialized and updated:
```
git submodule update --init --recursive
```
## Build Instructions
To build the project, follow these steps:
1. Create a build directory:
```
mkdir build
```
2. Generate the build system files using CMake:
```
cmake . -B build
```
3. Build the project:
```
cmake --build build
```
4. Run the tests:
```
ctest --test-dir build -V
```