2024-07-05 05:04 AM
I have a working project with its .ioc file.
Now I need to port the project codebase to another project that uses exactly the same processor, but with different pinout: the peripherals in the project will be the same, mapped on some other pins.
I need to have a complete codebase with its ioc file for both projects.
What is the best course of action to duplicate the original project?
It would be ok if I'll have to mess around with cubeMX to manage both ioc files.
Solved! Go to Solution.
2024-07-05 06:49 AM
Within the CubeIDE Project Explorer, you can copy & paste a project - that will duplicate the project, including its .ioc file.
2024-07-05 05:10 AM
I think you can only have one .ioc per project.
This is how I handled having common code for two (or more) different hardware targets:
It's two projects (each with its own .ioc file) sharing a 'common' code folder.
2024-07-05 06:44 AM
I don't want two iocs for one project, I want to duplicate one project and then change its ioc and in the end have two projects.
2024-07-05 06:49 AM
Within the CubeIDE Project Explorer, you can copy & paste a project - that will duplicate the project, including its .ioc file.
2024-07-05 06:53 AM
I'll try, thanks.