Skip to main content
Associate II
June 10, 2026
Question

How to add CMSIS-DSP to cubemx/cmake on STM32H755ZIQ cube package version 1.13.0

  • June 10, 2026
  • 2 replies
  • 60 views

I have an stm cube project that uses

  • STM32H755ZIQ
  • CMAKE
  • ST-CLANG as compiler
  • VS code with st pluging as IDE

I want to add CMSIS DSP libraries, but it look like complete nightmare since there are bunch of topics for older versions and stm cube ide and some open, but not finished version for cmake/vs code.
Is there an official instruction how to do it?
I tried to add it as .pack from CMSIS and as X-CUBE-ALGOBUILD DSP library, but both did not compile

2 replies

Associate III
June 10, 2026

Hello,

you have to copy the DSP folder content in cmsis/divers/dsp.

Then add the cmsis/driver/dsp/include foler to the include path in project properties.

 

dkurekAuthor
Associate II
June 10, 2026

Thanks. I will try it. Are CMSIS core files already included in the generated project or I need to add them manually as well?

Associate III
June 10, 2026

Core files are not included.

You hve to get them from one of the sample projects
 

Andrew Neil
Super User
June 10, 2026

 

A complex system that works is invariably found to have evolved from a simple system that worked.A complex system designed from scratch never works and cannot be patched up to make it work.
dkurekAuthor
Associate II
June 10, 2026

I saw this but this is for STMCubeIDE and I use cmake