2024-12-10 02:07 PM
I have read through a couple posts on this but did not get a clear answer.
I have two projects in a workspace. One shows the tree as: (This is how I want to see it!)
The other just shows Core with only .c files.
I can't see what is the difference as far as settings between the two projects that is causing this?
How do I show the Src and Inc as separate directories with all the .c and .h files listed?
Solved! Go to Solution.
2024-12-10 03:17 PM
In Windows Explorer, copy the Src and Inc folders (assuming those folders exist).
Then in STM32CubeIDE, paste them to the Core folder in the Project tree.
You'll see duplicate main.c and some other files with a link icon. You can delete those linked files. But quadspi.c and globe.c can't be deleted, but you should be able to drag them into the src folder.
2024-12-10 03:17 PM
In Windows Explorer, copy the Src and Inc folders (assuming those folders exist).
Then in STM32CubeIDE, paste them to the Core folder in the Project tree.
You'll see duplicate main.c and some other files with a link icon. You can delete those linked files. But quadspi.c and globe.c can't be deleted, but you should be able to drag them into the src folder.
2024-12-10 03:44 PM
Thanks, that worked!