How to use a STM32-Circle project with more than one C files ?
As you can see in the Zip files that you can download in Projects section, a batch file is included in each Zip to directly load the application without using Ride7 thanks to Circle_Mgr.exe
But if you make a project with further C files you will generate more than one object files (*.o) and you can't put on your Zip a single object file to be loaded by Circle_Mgr (which can load only single files).
So you have to add a new application in your project that will generate a *.lib file that could be loaded by the batch file.
In the Project window.
Right click on project and add a new application.
Choose "new library to be built" in type.
In project window,right click on this new application to add it your files
You now may have 2 applications in your project, the first is used to debug and the second only to build the *.lib file.
You will find a modified loader for OS_Test.lib in the OS_Test Zip in projects section.