An open API service indexing awesome lists of open source software.

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

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
```