Tagged Questions

0
votes
0answers
58 views

Freescale CodeWarrior : Register watchpoint on HCS08

I need to break the debugging when I-bit of SR (global interrupt mask) changes it's state. Freescale CodeWarrior 6.1 MCU: HCS08
-1
votes
3answers
137 views

problems with the sin function

#include <math.h> #include <hidef.h> /* for EnableInterrupts macro */ #include "derivative.h" /* include peripheral declarations */ #define DegtoRad (2.0*PI/360.0) // …
1
vote
1answer
141 views

CodeWarrior vs. CodeSourcery G++ for ColdFire Development

I am interested in any comparative analysis between Freescale's CodeWarrior tool chain and CodeSourcery G++ for developing embedded applications for the ColdFire family of processo …
1
vote
2answers
28 views

How to resolve the ‘Near data segment is bigger than 64k’ problem on Palm using CodeWarrior9?

I am working on a large project and now I am stack on this "Near data segment is bigger than 64k" error. If I comment the "FrmSetEventHandler(frm, DadosConstrutivos1HandleEvent);" …
2
votes
1answer
70 views

Solve boost.thread compilation error with Metrowerks compiler

Hi, I'm trying to use boost.thread with metrowerks codewarrior 5.5.3; in the header thread.hpp, I get the error that he's redefining thread::thread_data: class BOOST_THREAD_DECL …
1
vote
3answers
176 views

How can I inspect an STL list in the CodeWarrior debugger?

Is there any easy way to view the data in an STL std::list<T> in the Metrowerks CodeWarrior debugger? I can view data near the beginning or end of the list by looking at exp …
1
vote
1answer
83 views

CodeWarrior xml project files schema?

I am looking for a reference describing precisely the XML project file format used by CodeWarrior. I managed to find XSD files for recent versions of Visual C++ (here), could anyon …
1
vote
2answers
166 views

How can I segment my Palm OS 68K application?

If you have an 68K application written using CodeWarrior for Palm OS, how do you assign individual functions to different segments without manually moving files around in the segme …
1
vote
2answers
179 views

Can you link 68K code compiled with CodeWarrior for Palm OS with code compiled with PRC-Tools (GCC)?

I've got a Palm OS/Garnet 68K application that uses a third-party static library built with CodeWarrior. Can I rebuilt the application using PRC-Tools, the port of GCC for the Pal …