How to create project in keil uvision for mm32g0001 and add resources from mm32 LibSamples_MM32G0001_V2.3.9 library package. Keil tool chain for arm and Keil pack for mm32G is installed and some example from LibSamples_MM32G0001_V2.3.9 like Toggle led are tested and debug using J link.
I assume that you mean renaming the copied GPIO_LED_Toggle example into your own µVision project.In this case:
- Copy the complete GPIO_LED_Toggle example folder to a new folder, e.g. myprojectname.- Rename the µVision project file, for example- GPIO_LED_Toggle.uvprojx → myprojectname.uvprojx.- Open myprojectname.uvprojx in µVision.- Open Project → Manage → Project Items and rename the Target if desired.- Check Options for Target → Output → Name of Executable and change the output name to myprojectname.- Build the project and verify that there are no broken relative paths.
There is normally no need to rename the source files, startup files, or MM32 library files. You can now replace/modify the example main.c and add the resources required for your application.
Thank You rkopsch