mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
Fixed Seer working with 'avr-gdb'. Can use 'simavr' as a gdbserver.
This commit is contained in:
@@ -86,14 +86,10 @@ void SeerGdbLogWidget::processText (const QString& text) {
|
||||
str = text;
|
||||
}
|
||||
|
||||
// Filter escape characters.
|
||||
str = Seer::filterEscapes(str);
|
||||
|
||||
// Remove trailing "\n"
|
||||
while (str.back() == '\n') {
|
||||
str.chop(1);
|
||||
break;
|
||||
}
|
||||
// Filter out \n and \t.
|
||||
// Should probably do something better and expand them.
|
||||
str.replace("\\t", "");
|
||||
str.replace("\\n", "");
|
||||
|
||||
// Write the string to the log.
|
||||
textEdit->append(str);
|
||||
|
||||
Reference in New Issue
Block a user