How to setup code compilation in STM32CubeIDE for MHP30? #1994
-
I'm trying to set up the STM32CubeIDE for use in compiling IronOS for an MHP30 hotplate. I cannot figure out the required project includes. Does someone already have the project file setup that I could download? If not, could someone help me out in what my project includes should look like? I'm looking for specific included paths to add to the project configuration. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello. Here is the only one brief mention of setting up STM32CubeIDE, from the official documentation. The IronOS source tree doesn't rely on any external third party libraries (FreeRTOS code is embedded into the tree and I can speak only for myself here, but as far as I know, we all just use our favorite text editors/IDEs/tools configured for the source tree, and we just fire up It benefits since there is no ide/tooling vendor lock-in, which gives huge abilities for autobuilding & autotesting. |
Beta Was this translation helpful? Give feedback.
Hello. Here is the only one brief mention of setting up STM32CubeIDE, from the official documentation.
The IronOS source tree doesn't rely on any external third party libraries (FreeRTOS code is embedded into the tree and
usb-pd
lies inside of the tree as git submodule). So everything you need is inside the tree. Plus, you can usesource/Makefile
as a reference to get the idea of dependencies between project directories, source files & include files.I can speak only for myself here, but as far as I know, we all just use our favorite text editors/IDEs/tools configured for the source tree, and we just fire up
make ...
when we need tobuilddeal with the consequences. :)It benefits since t…