Tagged Questions
The codewarrior tag has no wiki summary.
26
votes
13answers
3k views
Does it matter which microcontroller to use for 1st time embed system programmer?
I've experience in doing desktop and web programming for a few years. I would like to move onto doing some embed system programming. After asking the initial question, I wonder which hardware / ...
5
votes
6answers
700 views
Reverse a byte using assembly language
I'm in a microprocessors class and we are using assembly language in Freescale CodeWarrior to program a 68HCS12 micro controller. Our assignment this week is to revers a byte, so if the byte was ...
4
votes
1answer
544 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 processors.
3
votes
2answers
236 views
Fixed point math with ARM Cortex-M4 and gcc compiler
I'm using Freescale Kinetis K60 and using the CodeWarrior IDE (which I believe uses GCC for the complier).
I want to multiply two 32 bit numbers (which results in a 64 bit number) and only retain the ...
3
votes
2answers
245 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 segment tab in the IDE?
2
votes
1answer
165 views
Solve boost.thread compilation error with Metrowerks compiler
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 thread
{
private:
... ...
2
votes
0answers
264 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
2
votes
2answers
254 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 Palm OS platform and ...
1
vote
2answers
152 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);" on ...
1
vote
3answers
440 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 expressions such as
...
1
vote
1answer
194 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 anyone point me to some ...
0
votes
1answer
52 views
Codewarrior doesn't accept __COUNTER__ macro although it exists in the compiler reference
I read in the CodeWarrior Build Tools Reference for Power Architecture that the __COUNTER__ predefined macro exists for Codewarrior like for MSVC or GCC. But, when I try to build my project I get :
...
0
votes
1answer
121 views
Codewarrior won't open .mcp project file
A colleague of mine has been working on a project in Codewarrior and I have come on board to assist.
When trying to open the .mcp project file that she has created (and is working fine on her ...
0
votes
0answers
65 views
boost in codewarrior for rvds 3.0
How to install boost libraries on codewarrior for rvds 3.0?
I am using arm virtual PC for running the metrowerks codewarrior. As to install boost for metrowerks, mwcc compiler should be recognized. ...
0
votes
1answer
124 views
Porting old CodeWarrior Project to Xcode
I have a very old command line utility in need of updating. Its project file is a CodeWarrior .mcp. Xcode used to be able to import CodeWarrior projects but that ability seems to have been removed in ...
0
votes
1answer
154 views
Is it possible to make a template function friend to a Template Specialization Class?
I have a template specialization class and I need to declare a function template as a friend to this class. I have already created the following code which compiles and works well on the MSVC compiler ...