Hello
I assume you are attempting to flash the .s19 file using the debug toolbar icon in CodeWarrior.
Am I right?
When attempting to debug an application the debugger will download the code (i.e program the flash), set a temporary breakpoint at function main and run the application till main function is reached.
When you are downloading a .s19 file, there are no debug information available, so the debugger cannot set a breakpoint at function main.
In order to remove the message you are seeing:
- Start the debugger once
- After flash programming is over, select File > Configuration. The Configuration dialog is opened.
- Switch to the Load tab
- Uncheck Stop at Function.
- If you just want to program the flash and do not want to start application automatically after downloading
you can also uncheck Run after Successful load.
- Click on OK.
The message should not show up for future attempt to download code to the board.
Note that if you choose to download the .s19 file you will not be able to perform source level debugging for your application. Is that your intent?
CrasyCat