Part Number: MSP432P401R
We have two Code Composer projects that produce a bootloader and an app respectively. To ease testing/production, we'd like to be able to combine these two .obj files so that we can provision a working chip via e.g. Uniflash from only a single file.
I found an older forum thread on this which linked to a wiki article which I found archived at https://web.archive.org/web/20180106212012/https://processors.wiki.ti.com/index.php/Combining_executable_files — is that still the generally recommended approach only with newer tools?
For example that uses an ofd470 tool which according to https://software-dl.ti.com/ccs/esd/documents/sdto_cgt_tiobj2bin_failed.html has been replaced by an "armofd" utility instead. Or is TI deprecating their own compiler tools and we should start moving to full GCC stack including objcopy?
I'm hoping we can create a third "wrapper" project that depends on the bootloader and app projects with a custom build script that combines their outputs.