I'm looking into migrating my project from gcc/make to Segger Embedded Studio, because I have some tricky debugging to do and SES should be a bit easier to use than GDB for it.
My current build system, in make, will produce a load of hex files (app, bootloader, SD, bootloader settings), then use mergehex to put them all together into one monolithic hex file, then flash that:
It will also clear the reset reason register.
How do I do all this with SES? Can it do all these things directly, or do I still have to call out to nrfproj and mergehex? How do I do that?