Newer
Older
# Corstone-3xx Bsps based on CMSIS drivers
This repository contains board support packages based on [CMSIS drivers](https://github.com/ARM-software/CMSIS_5/tree/develop/CMSIS/Driver/Include) for Corstone-3xx devices. Currently, only Corstone-300 is supported.
# Adding bsp to the application
The bsp supports CMake based build system. To include bsp in the application:
* Add this repository as a git submodule
* Include the following in application CMakeLists.txt
```cmake
set(TARGET_PLATFORM "corstone300")
add_subdirectory(mps3-corstone3xx-bsps)
target_link_libraries(application
PRIVATE
target-corstone300
)
```