2022-02-23 11:37 PM
Hey,
I am relatively new to developing with the STM32WB55RGV6. Do I always have to start with CubeMX when developing? Do you work only with the CubeIDE? how is your workflow?
thanks in advance
Eddy
2022-02-24 01:06 AM
Hello @EBuss.1,
I hope my answer has helped you, when your question is answered please close this topic by marking as Best the reply that answered you, it will help other find the solution faster.
Chahinez.
2022-02-24 01:46 AM
STM32CubeIDE is Eclipse based. So you can create projects without using the MX features (MX is also included in IDE).
With An eclipse project you are much more free in the structure of your project and in the writing of the code. This does not prevent you from including code generated by MX elsewhere.
Note that internally ST does not use the capabilities of MX to generate most of the provided examples.
2022-03-03 03:20 AM
Many thanks for your reply. This helped a lot!