Codewarrior for Coldfire - RTOS support

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Codewarrior for Coldfire - RTOS support

2,157 Views
TTA
Contributor I
Hi,
I understand that the Codewarrior for Coldfire Standard Edition 6.2 , does not support RTOS level debugging.
But i assume that i will be able to debug my task code. So in the below code i should be able to debug Stat1, Stat2 etc.. Is my assumption correct?
 
Also, advantage of RTOS level debugging would be that i will be able to debug the RTOS code itself. Is that correct?
Kindly let me know.
 
 
Init()
{
  CreateTask(NewTask,Priority,"NewTaskName");
  Start(NewTask);
}
 
void NewTask()
{
  Stat1;
  Stat2;
....
}
Labels (1)
0 Kudos
1 Reply

480 Views
marc_paquette
Contributor V
CodeWarrior for Coldfire Standard Edition (CWS-MCF-STDED-CX) has most of the debugging capabilities of the other editions. To answer your question, it can can trace threads and OS code.
 
The only difference: the standard edition targets bareboards. It has no custom capabilities for a real-time operating system. Specifically, the CodeWarrior IDE that ships with the standard edition will not have an RTOS menu populated with commands to offer extra capabilities to debug a particular RTOS.
 
I hope this helps.
 
Marc.
 
 
 

Message Edited by marc.paquette on 04-28-2006 10:35 AM

0 Kudos