I am doing a university course using an STM32L431 and started using Keil uVision 5. My team has run up against the code limit with all optimizations turned on and it seems to be unavoidable. Is there an easy way to import a project back from keil. I keep running into issues whether it's files not being read in or in the most recent case
#ifndef __TARGET_FPU_VFP in port.c
failing and throwing the error along with a bunch of different stray # in the same file. As far as I can see I have set this option. I also ran into the same issue trying to import into segger embedded studio.
>>Probably the easiest way is to start with a clean, basic project in the other IDE, and then bring in your files & settings.
This
Create a shell project, and use merge tools. Importing projects using the application seems hit-or-miss.
Frankly, the project files are in .XML, sort of thing an undergraduate should be able to create a serviceable port with a script...
Looking at the project files was helpful, thank you. I did notice a bunch of things looking there but the structure between keil and other IDEs is so wildly different that starting from a clean project, moving everything across and managing the errors that crop up ended up being the easiest