ObKo / stm32-cmake

CMake for stm32 developing.
MIT License
1.2k stars 339 forks source link

Fix multicore CMSIS tests #344

Closed xanthio closed 4 months ago

xanthio commented 5 months ago

CMSIS tests was intended to create an executable for each core of each device of the family. Unfortunately a typo in the CMakeFile only created an executable for main core.

Exemple: WL family tests before: image

WL family test after: image

This PR gave the opportunity to get rid off not found warnings during CMSIS configuration step: image

Hish15 commented 4 months ago

Good catch and fix, thx!