remove unnecessary shit
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user