# libopencm3_app **Repository Path**: fitsir/libopencm3_app ## Basic Information - **Project Name**: libopencm3_app - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-10 - **Last Updated**: 2025-04-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LibOpenCM3 App This is an Example of [LibOpenCM3 CMake](https://github.com/mikisama/libopencm3_cmake). ### Prerequisites * [CMake](https://github.com/Kitware/CMake/releases) * [GCC](https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases) * [Ninja](https://github.com/ninja-build/ninja/releases) * [Python](https://www.python.org/downloads) ### Quick Start 1. Clone this repo ```bash git clone --recursive https://github.com/mikisama/libopencm3_app.git cd libopencm3_app ``` 2. Setup CMake build directory ```bash cmake -GNinja -DCMAKE_TOOLCHAIN_FILE='cmake/gcc-arm-none-eabi.cmake' -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_BUILD_TYPE=Debug -Bbuild . ``` 3. Build ```bash cmake --build build ```