IDE Message window
In the software I am developing, I have liberally pasted the code with system.out.println statements to make it easy to see what is going on. Trouble is, when I run the code in the debug mode, I find that the formating goes wrong. Instead of listing all my messages, I seem to experience a "clear screen" effect whereby the messages arising from a instance of a method seem to always start again from the top of the message window, overwriting what was there previously. Is this normal and is there a way to make the message window act like a continous scrolling log?
Thanks
Paul
Thanks
Paul
Comments
Yeah - by default it will act as a scrolling screen. Sounds like you have a spurious HOME or CLS command being sent. These are as follows:
final static char CLS = '\u0010';
final static char HOME = 0x01;
James
System.out.println("");
to space out the displayed debug information. Could this have the same effect?
Paul
Get serialsniffer from here:
http://www.flache.de/Download/Shareware/SerialSnifferE/
The non-registered version allows you to capture 1024 bytes
at any baudrate. Set the baud to 28800 to capture output
from the JIDE port. Check received bytes against transmitted
bytes from System.out.print. That way you can find out
if there are false characters.
Remember the JIDE port sends out metadata bytes ($05,$7F)
regards peter
·
Thanks again for the help.
Paul
An empty string is supposed not to
print anything as it holds no characters.
regards peter
Paul