Terminal example don't show properly the data
-
Hi everyone, I have a problem in the Terminal example. It doesnt show properly the data readed.
In PuTTY, the data is shown correct but in the Terminal example no.
I post some captures:PuTTY

Terminal Example:

And the configuration

Thanks for the help!
-
Those
number;numberHcharacters look like terminal control sequences. Qt's "Simple Example" is... simple. It probably does not understand them :-) You need a real terminal to properly parse them (there are Qt terminals, for example Konsole).The example code is likely also escaping formatting characters (tabulators) away - that part should be easy to fix in the examples code. Find the place and prevent it from escaping the output. It's hard to say how exactly without getting through the whole code first.
-
This is the printf of the code:

-
Yeah, these are terminal control sequences. You need a real terminal to display them properly.