Skip to content
Snippets Groups Projects
Commit 3fadd995 authored by John Hodge's avatar John Hodge
Browse files

Kernel/serial - Heap dump option

parent 93924853
No related merge requests found
...@@ -73,6 +73,9 @@ void Serial_ByteReceived(tSerialPort *Port, char Ch) ...@@ -73,6 +73,9 @@ void Serial_ByteReceived(tSerialPort *Port, char Ch)
case 'p': case 'p':
Threads_Dump(); Threads_Dump();
break; break;
case 'h':
Heap_Dump();
break;
case 'X'-'A'+1: case 'X'-'A'+1:
PTY_SendInput(Port->PTY, &Ch, 1); PTY_SendInput(Port->PTY, &Ch, 1);
break; break;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment