remove unnecessary shit
This commit is contained in:
@ -20,9 +20,6 @@ int main() {
|
|||||||
// Speicherverwaltung initialisieren
|
// Speicherverwaltung initialisieren
|
||||||
allocator.init();
|
allocator.init();
|
||||||
|
|
||||||
// Initialize scrollback buffer after allocator.init()
|
|
||||||
// kout.init(5);
|
|
||||||
|
|
||||||
// Initialize SerialPort
|
// Initialize SerialPort
|
||||||
serial.init();
|
serial.init();
|
||||||
|
|
||||||
@ -57,10 +54,6 @@ int main() {
|
|||||||
// these init methods (allocator has to be initialized before but scheduler is constructed in the globals)
|
// these init methods (allocator has to be initialized before but scheduler is constructed in the globals)
|
||||||
scheduler.init();
|
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 starten (schedule() erzeugt den Idle-Thread)
|
||||||
scheduler.ready(new MainMenu()); // NOTE: A thread that manages other threads has to be added before scheduler.schedule(),
|
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
|
// because scheduler.schedule() doesn't return, only threads get cpu time
|
||||||
|
|||||||
Reference in New Issue
Block a user