raise time for immediate output, to catch some more information

This commit is contained in:
Holger Vogt 2019-08-11 17:08:19 +02:00
parent 5a45fdbebb
commit 3ab2c6468c
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ AppendChar(char c)
/* If line is complete, and waiting time has passed, show it in text window.
If time is less than delay time, always show the line (useful during start-up) */
if (c == LF && CompareTime(30, 200)) {
if (c == LF && CompareTime(30, 500)) {
DisplayText();
WaitForIdle();
}