I have a few newbie questions about CCS 5.2:
1. CCS 5.2 separates compiler and linker output by projects. For example if I have 2 projects in workspace(ProjectA and ProjectB, A depends on B), and rebuild project A. To see compiler and linker output for ProjectB I have to select manually ProjectB in Project Explorer, the same for ProjectA. My question is it possible to consolidate compiler and linker output from all projects to console, so I don't have to select each time project in Project Explorer tab.
2. Let say I have a few projects in workspace and several files from different projects are opened in editor. If I click on some file in editor, the project explorer automaticaly sets the project which contains this file as active in project explorer. Is there any way to prevent this? I don't want selection one or another file in editor influence which project is currently active in project explorer.
3. In order to debug my app I have to perform the following steps discovered by try and error:
- Click on Beatle icon, this initialize JTAG and connect CCS to board.
(In Debug window I see "Blackhawk ...C55xx(Running)" )
- Click on Suspend icon. (In Debug window I see "Blackhawk ...C55xx(Suspended)" )
- Click on menu Run -> Load -> Load Program and click on OK button on Load Program dialog.
- Click on Resume icon
- Now in Debug Window I see
Blackhawk ...C55xx(Suspended - SW Breakpoint)
|- main() ...
|- _args_main() ...
From this point I can set breakpoints and debug my app. It seems to me that I missed something or didn't configure CCS Debuger properly. I assume that I should be able to set breakpoints and debug my app right after clicking Beatle icon without all these intermediate steps.
Could someone comment?
Thanks