From 65d0edfbff698e74e99414b2e804c2ac3b96b655 Mon Sep 17 00:00:00 2001 From: nakst <> Date: Wed, 29 Dec 2021 09:52:20 +0000 Subject: [PATCH] change debug output overflow behaviour --- kernel/terminal.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/kernel/terminal.cpp b/kernel/terminal.cpp index 71046a0..51faad5 100644 --- a/kernel/terminal.cpp +++ b/kernel/terminal.cpp @@ -97,6 +97,7 @@ void DebugWriteCharacter(uintptr_t character) { if (!graphics.target || !graphics.target->debugPutBlock) return; if (debugCurrentRow == debugRows) { +#if 0 debugCurrentRow = 0; // uint64_t start = ProcessorReadTimeStamp(); @@ -104,6 +105,9 @@ void DebugWriteCharacter(uintptr_t character) { // while (ProcessorReadTimeStamp() < end); graphics.target->debugClearScreen(); +#else + return; +#endif } uintptr_t row = debugCurrentRow; @@ -411,6 +415,11 @@ void KernelPanic(const char *format, ...) { } #else EsPrint("End of report.\n"); + + if (graphics.target->debugPutData) { + // We put the log data on the screen before and after the panic report in case it gets stuck. + graphics.target->debugPutData((const uint8_t *) kernelLog, KERNEL_LOG_SIZE); + } #endif ProcessorHalt();