https://github.com/ptomulik/stm32xx
C++ utility library for STM32 software developers.
https://github.com/ptomulik/stm32xx
Last synced: 3 months ago
JSON representation
C++ utility library for STM32 software developers.
- Host: GitHub
- URL: https://github.com/ptomulik/stm32xx
- Owner: ptomulik
- Created: 2013-09-28T15:12:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-28T06:14:20.000Z (over 11 years ago)
- Last Synced: 2025-01-18T02:28:42.128Z (5 months ago)
- Language: C++
- Homepage:
- Size: 1.23 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
STM32++
=======C++ utility library for STM32 software developers.
Documentation
-------------Generating API Documentation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^.. code-block::
scons api-doc
Testing
-------Generating Unit Test Runners
^^^^^^^^^^^^^^^^^^^^^^^^^^^^.. code-block::
scons unit-test STDPERIPH_BASEDIR= CMSIS_BASEDIR=
The `STDPERIPH_BASEDIR` and `CMSIS_BASEDIR` are optional if this source tree is
embedded within the cortex-libs_ skeleton. If not, you must point out exactly
where are the stm32-stdperiph_ and cortex-cmsis_ repositories located.Running Unit Tests
^^^^^^^^^^^^^^^^^^List all the generated test runners::
find build/test/unit -name run_tests
pickup one and run, for example::
./build/test/unit/STM32F10X_MD/run_tests
Currently the unit tests are compiled and run on host only (not on target).
.. _cortex-libs: https://github.com/ptomulik/cortex-libs
.. _stm32-stdperiph: https://github.com/ptomulik/stm32-stdperiph
.. _cortex-cmsis: https://github.com/ptomulik/cortex-cmsis..