Loading...
 

SW4STM32 and SW4Linux fully supports the STM32MP1 asymmetric multicore Cortex/A7+M4 MPUs

   With System Workbench for Linux, Embedded Linux on the STM32MP1 family of MPUs from ST was never as simple to build and maintain, even for newcomers in the Linux world. And, if you install System Workbench for Linux in System Workbench for STM32 you can seamlessly develop and debug asymmetric applications running partly on Linux, partly on the Cortex-M4.
You can get more information from the ac6-tools website and download (registration required) various documents highlighting:

System Workbench for STM32


Why is stm32f4xx_hal_conf.h in a generated project always ignored by eclipse build (make)?

France

Hi,

stm32f4xx_hal_conf.h is in the library project nucleo-f411re_hal_lib that was created besides your project as it is used to configure the firmware itself; if you need to change it you should modify the one in the library project, not a copy in your application project. The idea is that the configuration is usually linked to your target board more than your application, so it is possible to share the firmwae library between several applications (and thus speed up application compilation). Having a copy in your application project could cause incoherencies between the version used to compile the firmware and the one used for your application code, if included directly...

You could also place everything in the application project when creating it by clicking the “As source in the application project” radio button on the firmware selection dialog; in this case your application project will include both your code and th firmware source code, including the stm32f4xx_hal_conf.h header file.

Hope this helps,

Bernard (Ac6)