Hullo folks,
I'm using Code Composer Studio 5.4.0 to generate an application that runs on a Tiva C series LaunchPad. The application has two functional blocks:
The "low" section of code contains the interrupt vectors, C libraries, and the basic functionality.
The "high" section of the code contains a single C function and some data. This function is occasionally executed by the low section and makes use of the library functions in the low section. The low section only has access to the one function.
The bright idea is that the low section is permanent but the high section will evolve and instead of re-flashing the entire application every time only the high section will be re-flashed.
I've successfully demonstrated the concept by brute force but I have been unable to find a way of generating an output from the linker that contains only the high section but still refers to the libraries in the low section.
Thanks in advance for any help.
Mike