2021-01-16 11:09 AM
Hello, maybe a newbie question but I just received my very first STM32 board (Nucleo H745ZI-Q) to learn embedded programming (mostly for fun and maybe for neuroscience applications in the future) and have been trying to generate code using the default settings in CubeIDE. The code generation goes smoothly using the default settings, but then in the project properties window, no toolchain is set for the generated project (attached screenshot) and I can't compile the code. However, Using the same IDE, I noticed that I can generate code for other boards like STM32F1, and In this case, the toolchain is set correctly and everything works fine.
Does CubeIDE 1.5.1 support Nucleo H7 series boards? Already tried re-installing the IDE.
Solved! Go to Solution.
2021-01-16 01:29 PM
All is working fine. You've acquired a board embedding a device which is a dual cpu one. STM32CubeIDE is creating x3 projects.
You've asked for top most project properties here. Such is not an applicative project but helping to manage device complexity.
As children of such project you should have x2 more. These ones are applicative projects. Basically one per cpu (Cortex-M4 & Cortex-M7). Asked for such projects properties ... you will see toolchain setup.
2021-01-16 01:29 PM
All is working fine. You've acquired a board embedding a device which is a dual cpu one. STM32CubeIDE is creating x3 projects.
You've asked for top most project properties here. Such is not an applicative project but helping to manage device complexity.
As children of such project you should have x2 more. These ones are applicative projects. Basically one per cpu (Cortex-M4 & Cortex-M7). Asked for such projects properties ... you will see toolchain setup.
2021-01-17 04:25 AM
Thanks, works like a charm!