2020-07-24 06:53 AM
I have downloaded a copy of the en.x-cube-spn5 but I am unsure how to add this to the STM32CUBEIDE to allow me to run the example programs. I would then like to develop new applications using a pair of X-NUCLEO-IHM05A1 boards and a Nucleo-F401RE board.
Solved! Go to Solution.
2020-07-27 05:09 AM
Hi,
if you open the the .cproject file for the System Workbench for STM32 IDE ("SW4STM32" folder) an automatic import procedures should start.
I did a fast test and the resulting project shows only a wrong reference for the "x_nucleo_ihm05a1_stm32f4xx.c" file. After fixing it changing the file location as below, the project compiles with no error.
New file location:
PROJECT_LOC\..\..\..\..\..\..\..\Drivers\BSP\X-NUCLEO-IHMxx\x_nucleo_ihm05a1_stm32f4xx.c
2020-07-27 05:09 AM
Hi,
if you open the the .cproject file for the System Workbench for STM32 IDE ("SW4STM32" folder) an automatic import procedures should start.
I did a fast test and the resulting project shows only a wrong reference for the "x_nucleo_ihm05a1_stm32f4xx.c" file. After fixing it changing the file location as below, the project compiles with no error.
New file location:
PROJECT_LOC\..\..\..\..\..\..\..\Drivers\BSP\X-NUCLEO-IHMxx\x_nucleo_ihm05a1_stm32f4xx.c
2020-07-30 07:06 AM
Hi Enrico,
that worked. Thank you for your help.