2022-03-29 07:13 AM
Im' following this tutorial of STM32WB55: https://www.youtube.com/watch?v=CKYWy7LKL68&list=PLnMKNibPkDnG9JRe2fbOOpVpWY7E4WbJ-&index=19&ab_channel=STMicroelectronics
All is fine until I try to generate code. It gets stuck at the moment of "Copying libraries files...".
What I have tried is not to generate code Under Root. But the problem after doing this is that I can't compile the project. And returns to me 9 errors, all of them sayng that one of the files has "Invalid arguments".
Is this a problem of CubeMX? I have tried it with the same versions that the tutorial use:
-Cubeide 1.7
-CubeMx 6.3
-STM32Cube_FW_WB_V1.12.0
And I also tried it with all the latest versions
-Cubeide 1.9
-CubeMx 6.5
-STM32Cube_FW_WB_V1.13.2
And I always have the same results.
Solved! Go to Solution.
2022-03-29 11:01 AM
Perhaps try using a directory without spaces or non-ascii characters.
2022-03-29 11:01 AM
Perhaps try using a directory without spaces or non-ascii characters.
2022-03-29 12:18 PM
May I suggest:
My projects are under D:, but all the tools are installed under default paths usually on C:. This also makes automatic updating of the tools easier. Found this to be easiest with many tools, lots of tools are built with libraries or options that just aren't friendly to changing drives/paths.
It also makes backups easier: only need to update my work on D:, not the installed packages on C:
Paul
2022-03-29 12:24 PM
Thanks TKD!!! I've been many days with this and you solutionated it in two seconds. I put the project in this directory and worked: E:\Prueba_BLE
2022-03-29 12:27 PM
Thanks for the tips!