1

remove unnecessary shit

This commit is contained in:
2022-07-16 01:05:40 +02:00
parent 78f97fcde5
commit 0fe0664538

View File

@ -20,9 +20,6 @@ int main() {
// Speicherverwaltung initialisieren
allocator.init();
// Initialize scrollback buffer after allocator.init()
// kout.init(5);
// Initialize SerialPort
serial.init();
@ -57,10 +54,6 @@ int main() {
// these init methods (allocator has to be initialized before but scheduler is constructed in the globals)
scheduler.init();
// Test
serial.write("Hello, this is a test message\r\n");
serial.write("Hello, this is a test message\r\n");
// Scheduler starten (schedule() erzeugt den Idle-Thread)
scheduler.ready(new MainMenu()); // NOTE: A thread that manages other threads has to be added before scheduler.schedule(),
// because scheduler.schedule() doesn't return, only threads get cpu time