Reputation: 1150
I have two IAR projects, front_end.eww & back_end.eww. Both are compiled and flashed onto the same board. front_end takes the input from user and hand it over to back_end. I want to attach debugger and debug both the projects at the same time. I am using i-jet for debugging.
Upvotes: 2
Views: 1287
Reputation: 26114
When you debug one application, you can load extra (ut to three) additional images (typically an ELF or UBROF file). You can either download the image to the device, or tell C-SPY to only read the related debug information.
See Options -> Debugger -> Images -> Download extra image
Upvotes: 0