- Use standard C++ output stream cout
cout<<"Your Message"<<endl;
- use the Marmalade s3eDebug module: first include the header:
#include "s3eDebug.h"
thens3eDebugOutputString("Your Message");
to display integers you have to convert them to C style strings first:int x=10;
char buffer[10];
//convert the int to a char array
sprintf(buffer,"%d",x);
s3eDebugOutputString(buffer);
Marmalade SDK Output Debug messages
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment